bazzar/crates/token_manager/Cargo.toml

40 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "token_manager"
version = "0.1.0"
edition = "2021"
2022-12-20 15:34:20 +01:00
[[bin]]
name = 'token-manager'
path = './src/main.rs'
2022-05-06 11:47:18 +02:00
[dependencies]
2022-12-20 15:34:20 +01:00
argon2 = { version = "0", features = ["parallel", "password-hash"] }
channels = { path = "../channels" }
chrono = { version = "0", features = ["serde"] }
2022-11-04 18:40:14 +01:00
config = { path = "../config" }
2022-12-20 15:34:20 +01:00
db-utils = { path = "../db-utils" }
derive_more = { version = "0", features = [] }
dotenv = { version = "0" }
futures = { version = "0" }
futures-util = { version = "0", features = [] }
2023-06-03 13:31:57 +02:00
gumdrop = { version = "0" }
2022-12-20 15:34:20 +01:00
hmac = { version = "0", features = [] }
jwt = { version = "0", features = [] }
model = { path = "../model", features = ["db"] }
password-hash = { version = "0", features = ["alloc"] }
rand_core = { version = "0", features = ["std"] }
2022-11-01 22:09:58 +01:00
rumqttc = { version = "*" }
2022-12-20 15:34:20 +01:00
serde = { version = "1", features = ["derive"] }
sha2 = { version = "0", features = [] }
sqlx = { version = "0", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"] }
sqlx-core = { version = "0", features = [] }
tarpc = { version = "0", features = ["tokio1", "serde-transport-bincode", "serde-transport", "serde", "serde-transport-json", "tcp"] }
thiserror = { version = "1" }
tokio = { version = "1", features = ['full'] }
tracing = { version = "0" }
uuid = { version = "1", features = ['v4'] }
[dev-dependencies]
2022-12-20 15:34:20 +01:00
fake = { version = "2" }
2022-11-04 18:40:14 +01:00
testx = { path = "../testx" }