kanidm/Cargo.toml
Firstyear 94a6bde269
20190607 authentication (#55)
Implement #2 anonymous authentication. This also puts into place the majority of the authentication framework, and starts to build the IDM layers ontop of the DB engine.
2019-07-12 15:28:46 +10:00

56 lines
911 B
TOML

# cargo-features = ["default-run"]
[package]
name = "rsidm"
version = "0.1.0"
authors = ["William Brown <william@blackhats.net.au>"]
# default-run = "rsidm_core"
edition = "2018"
# We need three major binaries. The server itself, the unix client, and a cli
# mgmt tool.
[lib]
name = "rsidm"
path = "src/lib/lib.rs"
[[bin]]
name = "rsidm_core"
path = "src/server/main.rs"
[[bin]]
name = "rsidm_whoami"
path = "src/clients/whoami.rs"
[dependencies]
actix = "0.7"
actix-web = "0.7"
bytes = "0.4"
log = "0.4"
env_logger = "0.6"
reqwest = "0.9"
# reqwest = { path = "../reqwest" }
chrono = "0.4"
cookie = "0.11"
regex = "1"
lazy_static = "1.2.0"
lru = "0.1"
tokio = "0.1"
futures = "0.1"
uuid = { version = "0.7", features = ["serde", "v4"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
rusqlite = { version = "0.15", features = ["backup"] }
r2d2 = "0.8"
r2d2_sqlite = "0.7"
concread = "0.1"