36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
name = "account_manager"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "account-manager"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
bincode = { version = "1" }
|
|
bytes = { version = "1" }
|
|
channels = { path = "../channels" }
|
|
config = { path = "../config" }
|
|
dotenv = { version = "0" }
|
|
futures = { version = "0" }
|
|
gumdrop = { version = "0" }
|
|
json = { version = "0" }
|
|
kanidm_client = "1.2.2"
|
|
kanidm_proto = "1.2.2"
|
|
model = { path = "../model", features = ['db'] }
|
|
rauthy-client = { version = "0.4.0", features = ["actix-web", "qrcode"] }
|
|
rumqttc = { version = "*" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
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 = { workspace = true, features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
fake = { version = "2" }
|
|
testx = { path = "../testx" }
|