2022-02-20 03:43:38 +01:00
|
|
|
[package]
|
|
|
|
name = "score"
|
2022-08-02 05:14:25 +02:00
|
|
|
version = "1.1.0-alpha.9"
|
2022-02-20 03:43:38 +01:00
|
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
2022-03-31 06:12:53 +02:00
|
|
|
rust-version = "1.59"
|
2022-02-20 03:43:38 +01:00
|
|
|
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]
|
2022-06-28 01:22:31 +02:00
|
|
|
async-std = { version = "^1.12.0", features = ["tokio1"] }
|
2022-08-02 05:14:25 +02:00
|
|
|
async-trait = "^0.1.57"
|
2022-07-10 23:40:05 +02:00
|
|
|
compact_jwt = "^0.2.3"
|
2022-06-28 01:22:31 +02:00
|
|
|
futures-util = "^0.3.21"
|
2022-07-11 10:16:41 +02:00
|
|
|
http-types = "^2.12.0"
|
2022-04-27 02:56:18 +02:00
|
|
|
kanidm = { path = "../idm" }
|
2022-02-20 03:43:38 +01:00
|
|
|
kanidm_proto = { path = "../../kanidm_proto" }
|
2022-06-28 01:22:31 +02:00
|
|
|
ldap3_proto = "^0.2.3"
|
2022-08-09 10:38:07 +02:00
|
|
|
libc = "^0.2.127"
|
2022-07-11 00:32:36 +02:00
|
|
|
openssl = "^0.10.41"
|
2022-07-03 03:17:46 +02:00
|
|
|
regex = "1.5.6"
|
2022-08-09 00:50:26 +02:00
|
|
|
serde = { version = "^1.0.142", features = ["derive"] }
|
2022-08-08 01:05:28 +02:00
|
|
|
serde_json = "^1.0.83"
|
2022-08-09 05:07:06 +02:00
|
|
|
sketching = { path = "../../sketching" }
|
2022-04-27 05:35:26 +02:00
|
|
|
tide = "^0.16.0"
|
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-08-02 05:14:25 +02:00
|
|
|
tide-compress = { version = "0.10.6", default-features = false, features = [ "deflate", "gzip", "regex-check" ] }
|
2022-07-11 10:16:41 +02:00
|
|
|
tide-openssl = "^0.1.1"
|
2022-09-05 06:37:31 +02:00
|
|
|
tokio = { version = "^1.21.0", features = ["net", "sync", "io-util", "macros"] }
|
2022-04-27 05:35:26 +02:00
|
|
|
tokio-openssl = "^0.6.3"
|
2022-09-12 00:45:20 +02:00
|
|
|
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
2022-06-13 00:51:23 +02:00
|
|
|
tracing = { version = "^0.1.35", features = ["attributes"] }
|
2022-06-28 01:22:31 +02:00
|
|
|
uuid = { version = "^1.1.2", features = ["serde", "v4" ] }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
profiles = { path = "../../profiles" }
|
2022-04-27 02:56:18 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-09 05:07:06 +02:00
|
|
|
kanidm_client = { path = "../../kanidm_client" }
|
2022-04-27 05:35:26 +02:00
|
|
|
futures = "^0.3.21"
|
2022-04-27 02:56:18 +02:00
|
|
|
|
2022-08-27 00:48:15 +02:00
|
|
|
webauthn-authenticator-rs = "0.4.5"
|
2022-04-27 05:35:26 +02:00
|
|
|
oauth2_ext = { package = "oauth2", version = "^4.1.0", default-features = false }
|
|
|
|
base64 = "^0.13.0"
|
2022-04-27 02:56:18 +02:00
|
|
|
|
2022-09-12 00:45:01 +02:00
|
|
|
url = { version = "^2.3.0", features = ["serde"] }
|
2022-06-20 01:47:41 +02:00
|
|
|
reqwest = { version = "0.11.11", features=["cookies", "json", "native-tls"] }
|