lldap/server/Cargo.toml

119 lines
2.2 KiB
TOML
Raw Normal View History

[package]
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
2021-11-14 00:23:21 +00:00
edition = "2021"
name = "lldap"
2022-10-10 15:47:53 +00:00
version = "0.4.2-alpha"
[dependencies]
actix = "0.13"
actix-files = "0.6"
actix-http = "3"
actix-rt = "2"
actix-server = "2"
actix-service = "2"
actix-web = "4.3"
actix-web-httpauth = "0.8"
anyhow = "*"
async-trait = "0.1"
2023-02-23 15:58:22 +00:00
base64 = "*"
bincode = "1.3"
cron = "*"
2023-02-23 15:58:22 +00:00
derive_builder = "0.12"
figment_file_provider_adapter = "0.1"
futures = "*"
futures-util = "*"
2023-02-23 15:58:22 +00:00
hmac = "0.12"
http = "*"
2023-02-23 15:58:22 +00:00
itertools = "0.10"
juniper = "0.15"
jwt = "0.16"
lber = "0.4.1"
2023-02-13 11:03:14 +00:00
ldap3_proto = ">=0.3.1"
log = "*"
2023-02-23 15:58:22 +00:00
orion = "0.17"
2022-07-15 12:59:15 +00:00
rustls = "0.20"
serde = "*"
serde_json = "1"
2023-02-23 15:58:22 +00:00
sha2 = "0.10"
thiserror = "*"
time = "0.3"
2022-07-15 12:59:15 +00:00
tokio-rustls = "0.23"
tokio-stream = "*"
2023-02-23 15:58:22 +00:00
tokio-util = "0.7"
tracing = "*"
tracing-actix-web = "0.7"
2022-04-15 11:52:20 +00:00
tracing-attributes = "^0.1.21"
tracing-log = "*"
2023-02-23 15:58:22 +00:00
rustls-pemfile = "1"
serde_bytes = "0.11"
2022-10-12 12:52:19 +00:00
webpki-roots = "*"
[dependencies.chrono]
features = ["serde"]
version = "*"
[dependencies.clap]
features = ["std", "color", "suggestions", "derive", "env"]
version = "3.1.15"
[dependencies.figment]
features = ["env", "toml"]
version = "*"
2022-04-15 11:52:20 +00:00
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter", "tracing-log"]
[dependencies.lettre]
2022-07-15 12:59:15 +00:00
features = ["builder", "serde", "smtp-transport", "tokio1-rustls-tls"]
default-features = false
2023-01-24 12:31:22 +00:00
version = "0.10.1"
[dependencies.lldap_auth]
path = "../auth"
[dependencies.opaque-ke]
version = "0.6"
[dependencies.rand]
features = ["small_rng", "getrandom"]
version = "0.8"
[dependencies.secstr]
features = ["serde"]
version = "*"
[dependencies.tokio]
features = ["full"]
2023-02-23 14:39:50 +00:00
version = "1.25"
[dependencies.uuid]
features = ["v3"]
version = "*"
2022-04-15 11:52:20 +00:00
[dependencies.tracing-forest]
features = ["smallvec", "chrono", "tokio"]
version = "^0.1.4"
2022-07-15 12:59:15 +00:00
[dependencies.actix-tls]
features = ["default", "rustls"]
version = "3"
2022-07-15 12:59:15 +00:00
[dependencies.image]
features = ["jpeg"]
default-features = false
version = "0.24"
2022-11-21 08:13:25 +00:00
[dependencies.sea-orm]
2023-02-10 11:32:41 +00:00
version= "0.11"
2022-11-21 08:13:25 +00:00
default-features = false
features = ["macros", "with-chrono", "with-uuid", "sqlx-all", "runtime-actix-rustls"]
2022-10-12 12:52:19 +00:00
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["rustls-tls-webpki-roots"]
[dev-dependencies]
mockall = "0.9.1"