bazzar/crates/idp/Cargo.toml

40 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-06-26 11:12:06 +02:00
[package]
name = "idp"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "idp"
path = "src/main.rs"
[dependencies]
bincode = { version = "1" }
bytes = { version = "1" }
channels = { path = "../channels" }
config = { path = "../config" }
2024-08-19 08:01:24 +02:00
derive_more = "1.0.0"
2024-06-26 11:12:06 +02:00
dotenv = { version = "0" }
futures = { version = "0" }
gumdrop = { version = "0" }
json = { version = "0" }
model = { path = "../model", features = ['db'] }
2024-08-19 08:01:24 +02:00
nutype = { version = "0.4.3", features = ["serde"] }
2024-06-26 16:34:00 +02:00
rauthy-client = { version = "0.4.0", features = ["qrcode", "userinfo"] }
2024-08-19 08:01:24 +02:00
reqwest = "0.12.5"
2024-06-26 11:12:06 +02:00
rumqttc = { version = "*" }
serde = { version = "1", features = ["derive"] }
2024-08-19 08:01:24 +02:00
serde_json.workspace = true
2024-06-26 11:12:06 +02:00
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"] }
2024-08-19 08:01:24 +02:00
validator.workspace = true
webauthn-authenticator-rs = { version = "0.5.0", features = ["mozilla", "nfc", "vendor-yubikey"] }
2024-06-26 11:12:06 +02:00
[dev-dependencies]
fake = { version = "2" }
testx = { path = "../testx" }