2021-08-31 14:46:31 +00:00
|
|
|
[package]
|
2021-11-29 09:26:11 +00:00
|
|
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
2021-11-14 00:23:21 +00:00
|
|
|
edition = "2021"
|
2021-08-31 14:46:31 +00:00
|
|
|
name = "lldap"
|
2022-10-10 15:47:53 +00:00
|
|
|
version = "0.4.2-alpha"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix = "0.12"
|
|
|
|
actix-files = "0.6.0-beta.6"
|
2022-07-01 12:26:57 +00:00
|
|
|
actix-http = "=3.0.0-beta.9"
|
2021-08-31 14:46:31 +00:00
|
|
|
actix-rt = "2.2.0"
|
2022-07-01 12:26:57 +00:00
|
|
|
actix-server = "=2.0.0-beta.5"
|
2021-08-31 14:46:31 +00:00
|
|
|
actix-service = "2.0.0"
|
2022-07-01 12:26:57 +00:00
|
|
|
actix-web = "=4.0.0-beta.8"
|
2021-08-31 14:46:31 +00:00
|
|
|
actix-web-httpauth = "0.6.0-beta.2"
|
|
|
|
anyhow = "*"
|
|
|
|
async-trait = "0.1"
|
|
|
|
base64 = "0.13"
|
|
|
|
bincode = "1.3"
|
|
|
|
cron = "*"
|
|
|
|
derive_builder = "0.10.2"
|
2022-09-14 08:28:49 +00:00
|
|
|
figment_file_provider_adapter = "0.1"
|
2021-08-31 14:46:31 +00:00
|
|
|
futures = "*"
|
|
|
|
futures-util = "*"
|
|
|
|
hmac = "0.10"
|
|
|
|
http = "*"
|
2022-06-10 16:23:16 +00:00
|
|
|
itertools = "0.10.1"
|
2022-07-30 13:47:30 +00:00
|
|
|
juniper = "0.15.10"
|
2022-06-10 16:23:16 +00:00
|
|
|
juniper_actix = "0.4.0"
|
2021-08-31 14:46:31 +00:00
|
|
|
jwt = "0.13"
|
2022-08-07 15:43:46 +00:00
|
|
|
ldap3_proto = "*"
|
2021-08-31 14:46:31 +00:00
|
|
|
log = "*"
|
2022-06-10 16:23:16 +00:00
|
|
|
orion = "0.16"
|
2022-07-15 12:59:15 +00:00
|
|
|
rustls = "0.20"
|
2021-08-31 14:46:31 +00:00
|
|
|
serde = "*"
|
|
|
|
serde_json = "1"
|
|
|
|
sha2 = "0.9"
|
|
|
|
thiserror = "*"
|
|
|
|
time = "0.2"
|
2022-07-15 12:59:15 +00:00
|
|
|
tokio-rustls = "0.23"
|
2021-10-23 16:01:35 +00:00
|
|
|
tokio-stream = "*"
|
2022-08-07 15:43:46 +00:00
|
|
|
tokio-util = "0.7.3"
|
2022-06-10 16:23:16 +00:00
|
|
|
tracing = "*"
|
2021-08-31 14:46:31 +00:00
|
|
|
tracing-actix-web = "0.4.0-beta.7"
|
2022-04-15 11:52:20 +00:00
|
|
|
tracing-attributes = "^0.1.21"
|
2021-08-31 14:46:31 +00:00
|
|
|
tracing-log = "*"
|
2022-07-15 12:59:15 +00:00
|
|
|
rustls-pemfile = "1.0.0"
|
2022-08-03 21:53:25 +00:00
|
|
|
serde_bytes = "0.11.7"
|
2022-10-12 12:52:19 +00:00
|
|
|
webpki-roots = "*"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
2022-06-10 16:23:16 +00:00
|
|
|
[dependencies.chrono]
|
|
|
|
features = ["serde"]
|
|
|
|
version = "*"
|
|
|
|
|
|
|
|
[dependencies.clap]
|
|
|
|
features = ["std", "color", "suggestions", "derive", "env"]
|
|
|
|
version = "3.1.15"
|
|
|
|
|
|
|
|
[dependencies.figment]
|
|
|
|
features = ["env", "toml"]
|
|
|
|
version = "*"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
2022-04-15 11:52:20 +00:00
|
|
|
[dependencies.tracing-subscriber]
|
|
|
|
version = "0.3"
|
|
|
|
features = ["env-filter", "tracing-log"]
|
|
|
|
|
2021-10-29 03:23:15 +00:00
|
|
|
[dependencies.lettre]
|
2022-07-15 12:59:15 +00:00
|
|
|
features = ["builder", "serde", "smtp-transport", "tokio1-rustls-tls"]
|
|
|
|
default-features = false
|
2021-10-29 03:23:15 +00:00
|
|
|
version = "0.10.0-rc.3"
|
|
|
|
|
2022-06-10 16:23:16 +00:00
|
|
|
[dependencies.lldap_auth]
|
|
|
|
path = "../auth"
|
|
|
|
|
2021-08-31 14:46:31 +00:00
|
|
|
[dependencies.sea-query]
|
2022-11-21 08:13:25 +00:00
|
|
|
version = "*"
|
|
|
|
features = ["with-chrono"]
|
2021-08-31 14:46:31 +00:00
|
|
|
|
2022-06-10 16:23:16 +00:00
|
|
|
[dependencies.opaque-ke]
|
|
|
|
version = "0.6"
|
|
|
|
|
|
|
|
[dependencies.rand]
|
|
|
|
features = ["small_rng", "getrandom"]
|
|
|
|
version = "0.8"
|
|
|
|
|
2021-11-11 09:36:42 +00:00
|
|
|
[dependencies.secstr]
|
|
|
|
features = ["serde"]
|
|
|
|
version = "*"
|
|
|
|
|
2022-06-10 16:23:16 +00:00
|
|
|
[dependencies.tokio]
|
|
|
|
features = ["full"]
|
2022-08-07 15:43:46 +00:00
|
|
|
version = "1.17"
|
2022-06-10 16:23:16 +00:00
|
|
|
|
|
|
|
[dependencies.uuid]
|
|
|
|
features = ["v3"]
|
2021-11-20 15:33:38 +00:00
|
|
|
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.0.0-beta.5"
|
|
|
|
|
2022-08-03 21:53:25 +00:00
|
|
|
[dependencies.image]
|
|
|
|
features = ["jpeg"]
|
|
|
|
default-features = false
|
|
|
|
version = "0.24"
|
|
|
|
|
2022-11-21 08:13:25 +00:00
|
|
|
[dependencies.sea-orm]
|
2023-01-24 09:38:06 +00:00
|
|
|
version= ">=0.10.7"
|
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"]
|
|
|
|
|
2021-08-31 14:46:31 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
mockall = "0.9.1"
|