mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.20.1 to 1.21.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.20.1...tokio-1.21.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
53 lines
1.8 KiB
TOML
53 lines
1.8 KiB
TOML
[package]
|
|
name = "score"
|
|
version = "1.1.0-alpha.9"
|
|
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]
|
|
async-std = { version = "^1.12.0", features = ["tokio1"] }
|
|
async-trait = "^0.1.57"
|
|
compact_jwt = "^0.2.3"
|
|
futures-util = "^0.3.21"
|
|
http-types = "^2.12.0"
|
|
kanidm = { path = "../idm" }
|
|
kanidm_proto = { path = "../../kanidm_proto" }
|
|
ldap3_proto = "^0.2.3"
|
|
libc = "^0.2.127"
|
|
openssl = "^0.10.41"
|
|
regex = "1.5.6"
|
|
serde = { version = "^1.0.142", features = ["derive"] }
|
|
serde_json = "^1.0.83"
|
|
sketching = { path = "../../sketching" }
|
|
tide = "^0.16.0"
|
|
# I tried including brotli and it didn't work, including "default" pulls a mime-type list from the internet on build
|
|
tide-compress = { version = "0.10.6", default-features = false, features = [ "deflate", "gzip", "regex-check" ] }
|
|
tide-openssl = "^0.1.1"
|
|
tokio = { version = "^1.21.0", features = ["net", "sync", "io-util", "macros"] }
|
|
tokio-openssl = "^0.6.3"
|
|
tokio-util = { version = "^0.7.3", features = ["codec"] }
|
|
tracing = { version = "^0.1.35", features = ["attributes"] }
|
|
uuid = { version = "^1.1.2", features = ["serde", "v4" ] }
|
|
|
|
[build-dependencies]
|
|
profiles = { path = "../../profiles" }
|
|
|
|
[dev-dependencies]
|
|
kanidm_client = { path = "../../kanidm_client" }
|
|
futures = "^0.3.21"
|
|
|
|
webauthn-authenticator-rs = "0.4.5"
|
|
oauth2_ext = { package = "oauth2", version = "^4.1.0", default-features = false }
|
|
base64 = "^0.13.0"
|
|
|
|
url = { version = "^2.2.2", features = ["serde"] }
|
|
reqwest = { version = "0.11.11", features=["cookies", "json", "native-tls"] }
|