kanidm/kanidmd/Cargo.toml
Firstyear 4de0d03eab
126 ssh key features (#146)
Implemnt SSH public key management

    This implements ssh public key distribution for kanidm, enforcing that
    valid ssh public keys are placed into the ssh_publickey attribute, adds
    management tools so that accounts can self-service manage their keys,
    and finally adds an authorized keys command helper suitable for
    sshd_config to utilise.
2019-11-16 14:40:45 +10:00

61 lines
977 B
TOML

# cargo-features = ["default-run"]
[package]
name = "kanidm"
version = "0.1.0"
authors = ["William Brown <william@blackhats.net.au>"]
# default-run = "kanidm_core"
edition = "2018"
[lib]
name = "kanidm"
path = "src/lib/lib.rs"
[[bin]]
name = "kanidmd"
path = "src/server/main.rs"
[dependencies]
kanidm_proto = { path = "../kanidm_proto" }
actix = "0.7"
actix-web = { version = "0.7", features = ["ssl"] }
bytes = "0.4"
log = "0.4"
env_logger = "0.6"
rand = "0.6"
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_cbor = "0.10"
serde_json = "1.0"
serde_derive = "1.0"
rusqlite = { version = "0.20", features = ["backup"] }
r2d2 = "0.8"
r2d2_sqlite = "0.12"
structopt = { version = "0.2", default-features = false }
time = "0.1"
concread = "0.1"
openssl = "0.10"
sshkeys = "0.1"
rpassword = "0.4"
num_cpus = "1.10"
idlset = "0.1"