2019-09-04 03:06:37 +02:00
|
|
|
[package]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm"
|
2019-12-17 06:47:16 +01:00
|
|
|
description = "Kanidm Server Library and Binary"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2019-09-04 03:06:37 +02:00
|
|
|
|
|
|
|
[lib]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm"
|
2022-04-27 02:56:18 +02:00
|
|
|
path = "src/lib.rs"
|
2019-09-04 03:06:37 +02:00
|
|
|
|
2022-10-01 08:08:51 +02:00
|
|
|
[[bench]]
|
|
|
|
name = "scaling_10k"
|
|
|
|
harness = false
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
async-std.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
base64.workspace = true
|
|
|
|
base64urlsafedata.workspace = true
|
|
|
|
chrono.workspace = true
|
|
|
|
compact_jwt.workspace = true
|
|
|
|
concread.workspace = true
|
|
|
|
dyn-clone.workspace = true
|
|
|
|
fernet = { workspace = true, features = ["fernet_danger_timestamps"] }
|
|
|
|
filetime.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
hashbrown.workspace = true
|
|
|
|
idlset.workspace = true
|
|
|
|
kanidm_proto.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
ldap3_proto.workspace = true
|
|
|
|
libc.workspace = true
|
|
|
|
libsqlite3-sys.workspace = true
|
|
|
|
num_enum.workspace = true
|
|
|
|
openssl.workspace = true
|
|
|
|
r2d2.workspace = true
|
|
|
|
r2d2_sqlite.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
saffron.workspace = true
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_cbor.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
sketching.workspace = true
|
|
|
|
smartstring = { workspace = true, features = ["serde"] }
|
|
|
|
smolset.workspace = true
|
|
|
|
sshkeys.workspace = true
|
|
|
|
tide.workspace = true
|
|
|
|
time = { workspace = true, features = ["serde", "std"] }
|
|
|
|
tokio = { workspace = true, features = ["net", "sync", "time"] }
|
|
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
|
|
toml.workspace = true
|
|
|
|
touch.workspace = true
|
2022-08-09 05:07:06 +02:00
|
|
|
|
2022-10-01 08:08:51 +02:00
|
|
|
tracing = { workspace = true, features = ["attributes"] }
|
2022-08-09 05:07:06 +02:00
|
|
|
|
2022-10-01 08:08:51 +02:00
|
|
|
url = { workspace = true, features = ["serde"] }
|
|
|
|
urlencoding.workspace = true
|
|
|
|
uuid = { workspace = true, features = ["serde", "v4" ] }
|
|
|
|
validator = { workspace = true, features = ["phone"] }
|
2022-09-25 03:21:30 +02:00
|
|
|
webauthn-rs = { workspace = true, features = ["resident-key-support", "preview-features", "danger-credential-internals"] }
|
|
|
|
webauthn-rs-core.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
zxcvbn.workspace = true
|
2021-08-19 03:04:24 +02:00
|
|
|
|
2022-07-06 02:53:43 +02:00
|
|
|
# because windows really can't build without the bundled one
|
|
|
|
[target.'cfg(target_family = "windows")'.dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
rusqlite = { workspace = true, features = ["bundled"] }
|
|
|
|
whoami.workspace = true
|
2022-07-06 02:53:43 +02:00
|
|
|
|
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
rusqlite.workspace = true
|
|
|
|
users.workspace = true
|
2022-07-06 02:53:43 +02:00
|
|
|
|
2020-05-01 19:24:28 +02:00
|
|
|
[features]
|
2020-12-02 02:12:07 +01:00
|
|
|
# default = [ "libsqlite3-sys/bundled", "openssl/vendored" ]
|
2020-05-01 19:24:28 +02:00
|
|
|
|
2020-01-26 10:55:53 +01:00
|
|
|
[dev-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
criterion = { workspace = true, features = ["html_reports"] }
|
2022-09-25 03:21:30 +02:00
|
|
|
webauthn-authenticator-rs.workspace = true
|
2021-02-13 04:46:22 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
profiles.workspace = true
|
2021-02-23 09:10:59 +01:00
|
|
|
|