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"
|
2023-04-11 14:43:51 +00:00
|
|
|
version = "0.4.4-alpha"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 15:48:37 +00:00
|
|
|
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"
|
2021-08-31 14:46:31 +00:00
|
|
|
anyhow = "*"
|
|
|
|
async-trait = "0.1"
|
2023-03-27 08:20:36 +00:00
|
|
|
base64 = "0.21"
|
2021-08-31 14:46:31 +00:00
|
|
|
bincode = "1.3"
|
|
|
|
cron = "*"
|
2023-02-23 15:58:22 +00:00
|
|
|
derive_builder = "0.12"
|
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 = "*"
|
2023-02-23 15:58:22 +00:00
|
|
|
hmac = "0.12"
|
2021-08-31 14:46:31 +00:00
|
|
|
http = "*"
|
2023-02-23 15:58:22 +00:00
|
|
|
itertools = "0.10"
|
2023-02-23 15:48:37 +00:00
|
|
|
juniper = "0.15"
|
|
|
|
jwt = "0.16"
|
|
|
|
lber = "0.4.1"
|
2023-02-13 11:03:14 +00:00
|
|
|
ldap3_proto = ">=0.3.1"
|
2021-08-31 14:46:31 +00:00
|
|
|
log = "*"
|
2023-02-23 15:58:22 +00:00
|
|
|
orion = "0.17"
|
2023-04-10 16:32:31 +00:00
|
|
|
rustls-pemfile = "1"
|
2021-08-31 14:46:31 +00:00
|
|
|
serde = "*"
|
2023-04-10 16:32:31 +00:00
|
|
|
serde_bytes = "0.11"
|
2021-08-31 14:46:31 +00:00
|
|
|
serde_json = "1"
|
2023-02-23 15:58:22 +00:00
|
|
|
sha2 = "0.10"
|
2021-08-31 14:46:31 +00:00
|
|
|
thiserror = "*"
|
2023-02-23 15:48:37 +00:00
|
|
|
time = "0.3"
|
2022-07-15 12:59:15 +00:00
|
|
|
tokio-rustls = "0.23"
|
2021-10-23 16:01:35 +00:00
|
|
|
tokio-stream = "*"
|
2023-02-23 15:58:22 +00:00
|
|
|
tokio-util = "0.7"
|
2022-06-10 16:23:16 +00:00
|
|
|
tracing = "*"
|
2023-02-23 15:48:37 +00:00
|
|
|
tracing-actix-web = "0.7"
|
2022-04-15 11:52:20 +00:00
|
|
|
tracing-attributes = "^0.1.21"
|
2021-08-31 14:46:31 +00:00
|
|
|
tracing-log = "*"
|
2023-04-10 16:32:31 +00:00
|
|
|
urlencoding = "2"
|
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"]
|
2023-02-28 08:00:45 +00:00
|
|
|
version = "4"
|
2022-06-10 16:23:16 +00:00
|
|
|
|
|
|
|
[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
|
2023-01-24 12:31:22 +00:00
|
|
|
version = "0.10.1"
|
2021-10-29 03:23:15 +00:00
|
|
|
|
2022-06-10 16:23:16 +00:00
|
|
|
[dependencies.lldap_auth]
|
|
|
|
path = "../auth"
|
|
|
|
|
|
|
|
[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"]
|
2023-02-23 14:39:50 +00:00
|
|
|
version = "1.25"
|
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"]
|
2023-02-23 15:48:37 +00:00
|
|
|
version = "3"
|
2022-07-15 12:59:15 +00:00
|
|
|
|
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-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"]
|
|
|
|
|
2023-04-11 11:22:07 +00:00
|
|
|
[dependencies.rustls]
|
|
|
|
version = "0.20"
|
|
|
|
features = ["dangerous_configuration"]
|
|
|
|
|
2021-08-31 14:46:31 +00:00
|
|
|
[dev-dependencies]
|
2023-02-28 08:00:45 +00:00
|
|
|
mockall = "0.11"
|