40 lines
1.4 KiB
TOML
40 lines
1.4 KiB
TOML
[package]
|
|
name = "token_manager"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = 'token-manager'
|
|
path = './src/main.rs'
|
|
|
|
[dependencies]
|
|
argon2 = { version = "0", features = ["parallel", "password-hash"] }
|
|
channels = { path = "../channels" }
|
|
chrono = { version = "0", features = ["serde"] }
|
|
config = { path = "../config" }
|
|
db-utils = { path = "../db-utils" }
|
|
derive_more = { version = "0", features = [] }
|
|
dotenv = { version = "0" }
|
|
futures = { version = "0" }
|
|
futures-util = { version = "0", features = [] }
|
|
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"] }
|
|
rumqttc = { version = "*" }
|
|
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'] }
|
|
gumdrop = { version = "0" }
|
|
|
|
[dev-dependencies]
|
|
fake = { version = "2" }
|
|
testx = { path = "../testx" }
|