kanidm/kanidmd/score/Cargo.toml
Firstyear 9ade567a52
383 170 164 authentication updates 2 (#716)
Add foundations for credential update sessions.
2022-04-27 10:56:18 +10:00

58 lines
1.7 KiB
TOML

[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 = "../idm" }
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"
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" }
[dev-dependencies]
tracing-subscriber = "0.3"
# tokio = { version = "1", features = ["rt", "net", "time", "macros", "sync", "signal"] }
# kanidm = { path = "../kanidmd" }
# score = { path = "../kanidmd/score" }
futures = "0.3"
serde_json = "1.0"
# async-std = { version = "1.6", features = ["tokio1"] }
webauthn-authenticator-rs = "0.3.0-alpha.12"
oauth2_ext = { package = "oauth2", version = "4.0", default-features = false }
base64 = "0.13"
# compact_jwt = "^0.1.5"
kanidm_client = { path = "../../kanidm_client" }
url = { version = "2", features = ["serde"] }
reqwest = { version = "0.11", features=["cookies", "json", "native-tls"] }