kanidm/Cargo.toml

59 lines
978 B
TOML
Raw Normal View History

# cargo-features = ["default-run"]
2018-12-28 06:24:12 +01:00
2018-09-29 09:54:16 +02:00
[package]
name = "rsidm"
version = "0.1.0"
authors = ["William Brown <william@blackhats.net.au>"]
# default-run = "rsidm_core"
edition = "2018"
2018-09-29 09:54:16 +02:00
# We need three major binaries. The server itself, the unix client, and a cli
# mgmt tool.
[lib]
name = "rsidm"
2018-12-28 06:24:12 +01:00
path = "src/lib/lib.rs"
[[bin]]
name = "rsidmd"
2018-12-28 06:24:12 +01:00
path = "src/server/main.rs"
[[bin]]
name = "kanidm"
path = "src/clients/main.rs"
2018-12-28 06:18:16 +01:00
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"
log = "0.4"
env_logger = "0.6"
2018-11-26 07:13:22 +01:00
reqwest = "0.9"
# reqwest = { path = "../reqwest" }
2018-11-11 22:59:09 +01:00
2018-12-27 06:22:03 +01:00
chrono = "0.4"
cookie = "0.11"
2018-12-29 13:05:54 +01:00
regex = "1"
lazy_static = "1.2.0"
lru = "0.1"
2018-09-29 09:54:16 +02:00
tokio = "0.1"
2018-09-29 09:54:16 +02:00
futures = "0.1"
2018-12-30 02:04:17 +01:00
uuid = { version = "0.7", features = ["serde", "v4"] }
2018-09-29 09:54:16 +02:00
serde = "1.0"
serde_cbor = "0.10"
2018-09-29 09:54:16 +02:00
serde_json = "1.0"
serde_derive = "1.0"
2018-12-30 03:17:09 +01:00
rusqlite = { version = "0.15", features = ["backup"] }
2018-09-29 09:54:16 +02:00
r2d2 = "0.8"
r2d2_sqlite = "0.7"
2018-09-29 09:54:16 +02:00
structopt = { version = "0.2", default-features = false }
2018-12-30 03:17:09 +01:00
concread = "0.1"
2018-09-29 09:54:16 +02:00