kanidm/kanidmd/score/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "score"
version = "0.1.0"
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/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kanidm = { path = "../" }
kanidm_proto = { path = "../../kanidm_proto" }
libc = "0.2"
uuid = { version = "0.8", features = ["serde", "v4" ] }
tide = "0.16"
tide-openssl = "^0.1.1"
futures-util = "0.3"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
tokio-openssl = "0.6"
openssl = "0.10"
2022-03-07 00:22:35 +01:00
ldap3_proto = "0.2.2"
tracing = { version = "0.1", features = ["attributes"] }
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
async-std = { version = "1.6", features = ["tokio1"] }
compact_jwt = "^0.2.0"
[build-dependencies]
profiles = { path = "../../profiles" }