2022-02-20 03:43:38 +01:00
|
|
|
[package]
|
2022-10-05 01:48:48 +02:00
|
|
|
name = "kanidmd_core"
|
|
|
|
description = "Kanidm Server Core and Library"
|
2022-02-20 03:43:38 +01:00
|
|
|
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
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
async-std = { workspace = true, features = ["tokio1"] }
|
|
|
|
async-trait.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
chrono.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
compact_jwt.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
http-types.workspace = true
|
|
|
|
kanidm_proto.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
kanidmd_lib.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
ldap3_proto.workspace = true
|
|
|
|
libc.workspace = true
|
|
|
|
openssl.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
rand.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
regex.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
saffron.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json.workspace = true
|
|
|
|
sketching.workspace = true
|
|
|
|
tide.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
time = { workspace = true, features = ["serde", "std"] }
|
2022-07-03 03:17:46 +02:00
|
|
|
# I tried including brotli and it didn't work, including "default" pulls a mime-type list from the internet on build
|
2022-10-01 08:08:51 +02:00
|
|
|
tide-compress = { workspace = true, default-features = false, features = [ "deflate", "gzip", "regex-check" ] }
|
|
|
|
tide-openssl.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["net", "sync", "io-util", "macros"] }
|
|
|
|
tokio-openssl.workspace = true
|
|
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
|
|
tracing = { workspace = true, features = ["attributes"] }
|
|
|
|
uuid = { workspace = true, features = ["serde", "v4" ] }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
profiles.workspace = true
|
2022-04-27 02:56:18 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
kanidm_client.workspace = true
|
|
|
|
futures.workspace = true
|
2022-04-27 02:56:18 +02:00
|
|
|
|
2022-09-25 03:21:30 +02:00
|
|
|
webauthn-authenticator-rs.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
oauth2_ext = { workspace = true, default-features = false }
|
2022-04-27 02:56:18 +02:00
|
|
|
|
2022-10-01 08:08:51 +02:00
|
|
|
url = { workspace = true, features = ["serde"] }
|
|
|
|
reqwest = { workspace = true, features=["cookies", "json", "native-tls"] }
|