kanidm/kanidmd/Cargo.toml

121 lines
2.6 KiB
TOML
Raw Normal View History

[package]
name = "kanidm"
2021-07-07 04:03:57 +02:00
version = "1.1.0-alpha.5"
authors = ["William Brown <william@blackhats.net.au>"]
edition = "2018"
license = "MPL-2.0"
description = "Kanidm Server Library and Binary"
documentation = "https://docs.rs/kanidm/latest/kanidm/"
2020-01-17 02:51:15 +01:00
homepage = "https://github.com/kanidm/kanidm/"
repository = "https://github.com/kanidm/kanidm/"
[lib]
name = "kanidm"
path = "src/lib/lib.rs"
[[bin]]
name = "kanidmd"
path = "src/server/main.rs"
[dependencies]
2020-06-30 06:58:35 +02:00
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha" }
2021-02-17 09:36:28 +01:00
jemallocator = { version = "0.3.0", optional = true }
2021-02-10 06:08:22 +01:00
url = { version = "2", features = ["serde"] }
2021-04-01 02:29:09 +02:00
tide = "0.16"
tide-rustls = "0.3"
async-trait = "0.1"
async-h1 = "2.0"
fernet = { version = "^0.1.4", features = ["fernet_danger_timestamps"] }
2021-05-26 08:11:00 +02:00
bundy = "^0.1.1"
2021-08-04 06:51:09 +02:00
async-std = { version = "1.6", features = ["tokio1"] }
log = "0.4"
env_logger = "0.8"
rand = "0.8"
toml = "0.5"
chrono = "0.4"
2021-07-31 09:13:46 +02:00
saffron = "0.1.0"
regex = "1"
lazy_static = "1.2.0"
futures = "0.3"
futures-util = "0.3"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
tokio-openssl = "0.6"
openssl = "0.10"
uuid = { version = "0.8", features = ["serde", "v4" ] }
serde = "1.0"
serde_cbor = "0.11"
serde_json = "1.0"
serde_derive = "1.0"
libsqlite3-sys = { version = "0.22" }
rusqlite = { version = "0.25", features = ["backup"] }
r2d2 = "0.8"
r2d2_sqlite = "0.18"
structopt = { version = "0.3", default-features = false }
time = { version = "0.2", features = ["serde", "std"] }
2021-04-01 02:29:09 +02:00
hashbrown = "0.11"
concread = "^0.2.16"
# concread = { version = "^0.2.9", path = "../../concread" }
# concread = { version = "^0.2.9", features = ["simd_support"] }
2021-03-15 01:20:54 +01:00
sshkeys = "^0.3.1"
rpassword = "5.0"
num_cpus = "1.10"
zxcvbn = "2.0"
base64 = "0.13"
idlset = { version = "^0.2" }
# idlset = { version = "^0.2", path = "../../idlset" }
ldap3_server = "0.1"
2021-07-24 06:58:38 +02:00
webauthn-rs = "0.3.0-alpha.9"
libc = "0.2"
users = "0.11"
smartstring = { version = "0.2", features = ["serde"] }
2021-07-07 03:50:13 +02:00
validator = { version = "0.14" }
2021-07-08 02:09:15 +02:00
touch = "0.0.1"
filetime = "0.2.14"
[features]
2021-02-17 09:36:28 +01:00
simd_support = [ "concread/simd_support" ]
# default = [ "libsqlite3-sys/bundled", "openssl/vendored" ]
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
# For testing webauthn
2021-07-24 06:58:38 +02:00
webauthn-authenticator-rs = "0.3.0-alpha.10"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt"]
[build-dependencies]
structopt = { version = "0.3", default-features = false }
serde = "1.0"
serde_derive = "1.0"
toml = "0.5"
2021-07-27 05:20:50 +02:00
rustc_version = "0.4.0"
[[bench]]
name = "scaling_10k"
harness = false