kanidm/Cargo.toml

37 lines
559 B
TOML
Raw Normal View History

2018-09-29 09:54:16 +02:00
[package]
name = "rsidm"
version = "0.1.0"
authors = ["William Brown <william@blackhats.net.au>"]
# We need three major binaries. The server itself, the unix client, and a cli
# mgmt tool.
[lib]
name = "rsidm"
path = "src/lib.rs"
[[bin]]
name = "rsidm_core"
path = "src/main.rs"
2018-09-29 09:54:16 +02:00
[dependencies]
actix = "0.7"
actix-web = "0.7"
2018-11-11 22:59:09 +01:00
bytes = "0.4"
env_logger = "0.5"
2018-09-29 09:54:16 +02:00
tokio = "0.1"
2018-09-29 09:54:16 +02:00
futures = "0.1"
uuid = { version = "0.5", features = ["serde", "v4"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2018-11-06 13:09:48 +01:00
rusqlite = "0.15"
2018-09-29 09:54:16 +02:00
r2d2 = "0.8"
r2d2_sqlite = "0.7"
2018-09-29 09:54:16 +02:00