kanidm/kanidmd/idm/Cargo.toml
dependabot[bot] 9a7c6eeec7
Bump tokio-util from 0.7.2 to 0.7.3 (#814)
Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.7.2 to 0.7.3.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-util-0.7.2...tokio-util-0.7.3)

---
updated-dependencies:
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-06 08:26:05 +10:00

102 lines
2.3 KiB
TOML

[package]
name = "kanidm"
version = "1.1.0-alpha.8"
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]
kanidm_proto = { path = "../../kanidm_proto" }
tracing = { version = "^0.1.34", features = ["attributes"] }
tracing-subscriber = { version = "^0.3.11", features = ["env-filter"] }
tracing-serde = "^0.1.3"
dyn-clone = "^1.0.5"
url = { version = "^2.2.2", features = ["serde"] }
tide = "^0.16.0"
async-trait = "^0.1.53"
fernet = { version = "^0.1.4", features = ["fernet_danger_timestamps"] }
compact_jwt = "^0.2.1"
async-std = { version = "^1.11.0", features = ["tokio1"] }
rand = "^0.8.5"
toml = "^0.5.9"
chrono = "^0.4.19"
saffron = "^0.1.0"
regex = "^1.5.6"
lazy_static = "^1.4.0"
futures = "^0.3.21"
futures-util = "^0.3.21"
tokio = { version = "^1.19.1", features = ["net", "sync", "time"] }
tokio-util = { version = "^0.7.3", features = ["codec"] }
openssl = "^0.10.38"
uuid = { version = "^1.1.1", features = ["serde", "v4" ] }
compiled-uuid = "0.1.2"
serde = { version = "^1.0.137", features = ["derive"] }
serde_cbor = "^0.11.2"
serde_json = "^1.0.80"
libsqlite3-sys = "0.24.2"
rusqlite = "^0.27.0"
r2d2 = "^0.8.9"
r2d2_sqlite = "^0.20.0"
time = { version = "=0.2.27", features = ["serde", "std"] }
hashbrown = { version = "0.12.0", features = ["serde", "inline-more", "ahash"] }
concread = "^0.3.4"
smolset = "^1.3.1"
sshkeys = "^0.3.1"
zxcvbn = "^2.2.1"
base64 = "^0.13.0"
idlset = { version = "^0.2.3" }
ldap3_proto = "^0.2.3"
webauthn-rs = "^0.3.2"
libc = "^0.2.126"
users = "^0.11.0"
smartstring = { version = "^1.0.1", features = ["serde"] }
validator = { version = "^0.15.0", features = ["phone"] }
touch = "^0.0.1"
filetime = "^0.2.16"
num_enum = "^0.5.7"
[features]
# default = [ "libsqlite3-sys/bundled", "openssl/vendored" ]
[dev-dependencies]
criterion = { version = "^0.3.5", features = ["html_reports"] }
# For testing webauthn
webauthn-authenticator-rs = "^0.3.2"
[build-dependencies]
profiles = { path = "../../profiles" }
[[bench]]
name = "scaling_10k"
harness = false