mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
99 lines
2.9 KiB
TOML
99 lines
2.9 KiB
TOML
[package]
|
|
name = "kanidm"
|
|
version = "1.1.0-alpha.9"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
rust-version = "1.59"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Server Library and Binary"
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
[lib]
|
|
name = "kanidm"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-std = { version = "^1.12.0", features = ["tokio1"] }
|
|
async-trait = "^0.1.57"
|
|
base64 = "^0.13.0"
|
|
base64urlsafedata = "0.1.0"
|
|
chrono = "^0.4.19"
|
|
compact_jwt = "^0.2.3"
|
|
compiled-uuid = "0.1.2"
|
|
concread = "^0.3.7"
|
|
dyn-clone = "^1.0.8"
|
|
fernet = { version = "^0.1.4", features = ["fernet_danger_timestamps"] }
|
|
filetime = "^0.2.17"
|
|
futures = "^0.3.21"
|
|
futures-util = "^0.3.21"
|
|
hashbrown = { version = "0.12.3", features = ["serde", "inline-more", "ahash"] }
|
|
idlset = { version = "^0.2.4" }
|
|
kanidm_proto = { path = "../../kanidm_proto" }
|
|
lazy_static = "^1.4.0"
|
|
ldap3_proto = "^0.2.3"
|
|
libc = "^0.2.126"
|
|
libsqlite3-sys = "^0.25.0"
|
|
num_enum = "^0.5.7"
|
|
openssl = "^0.10.41"
|
|
r2d2 = "^0.8.9"
|
|
r2d2_sqlite = "^0.21.0"
|
|
rand = "^0.8.5"
|
|
regex = "^1.5.6"
|
|
saffron = "^0.1.0"
|
|
serde = { version = "^1.0.141", features = ["derive"] }
|
|
serde_cbor = "^0.11.2"
|
|
serde_json = "^1.0.82"
|
|
smartstring = { version = "^1.0.1", features = ["serde"] }
|
|
smolset = "^1.3.1"
|
|
sshkeys = "^0.3.1"
|
|
tide = "^0.16.0"
|
|
time = { version = "=0.2.27", features = ["serde", "std"] }
|
|
tokio = { version = "^1.20.0", features = ["net", "sync", "time"] }
|
|
tokio-util = { version = "^0.7.3", features = ["codec"] }
|
|
toml = "^0.5.9"
|
|
touch = "^0.0.1"
|
|
tracing = { version = "^0.1.35", features = ["attributes", "max_level_trace", "release_max_level_debug"] }
|
|
tracing-serde = "^0.1.3"
|
|
tracing-subscriber = { version = "^0.3.14", features = ["env-filter"] }
|
|
url = { version = "^2.2.2", features = ["serde"] }
|
|
urlencoding = "2.1.0"
|
|
uuid = { version = "^1.1.2", features = ["serde", "v4" ] }
|
|
validator = { version = "^0.16.0", features = ["phone"] }
|
|
webauthn-rs = { version = "0.4.5", features = ["resident-key-support", "preview-features", "danger-credential-internals"] }
|
|
webauthn-rs-core = "0.4.2-beta.3"
|
|
zxcvbn = "^2.2.1"
|
|
|
|
# because windows really can't build without the bundled one
|
|
[target.'cfg(target_family = "windows")'.dependencies.rusqlite]
|
|
version = "^0.28.0"
|
|
features = ["bundled"]
|
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies.rusqlite]
|
|
version = "^0.28.0"
|
|
|
|
[target.'cfg(target_family = "windows")'.dependencies]
|
|
whoami = "^1.2.1"
|
|
|
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
users = "^0.11.0"
|
|
|
|
|
|
[features]
|
|
# default = [ "libsqlite3-sys/bundled", "openssl/vendored" ]
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "^0.3.6", features = ["html_reports"] }
|
|
# For testing webauthn
|
|
webauthn-authenticator-rs = "0.4.2-beta.3"
|
|
|
|
[build-dependencies]
|
|
profiles = { path = "../../profiles" }
|
|
|
|
[[bench]]
|
|
name = "scaling_10k"
|
|
harness = false
|
|
|