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"
|
2021-11-29 09:26:11 +00:00
|
|
|
version = "0.3.0-alpha.1"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix = "0.12"
|
|
|
|
actix-files = "0.6.0-beta.6"
|
|
|
|
actix-http = "3.0.0-beta.9"
|
|
|
|
actix-rt = "2.2.0"
|
|
|
|
actix-server = "2.0.0-beta.5"
|
|
|
|
actix-service = "2.0.0"
|
|
|
|
actix-web = "4.0.0-beta.8"
|
|
|
|
actix-web-httpauth = "0.6.0-beta.2"
|
|
|
|
anyhow = "*"
|
|
|
|
async-trait = "0.1"
|
|
|
|
base64 = "0.13"
|
|
|
|
bincode = "1.3"
|
|
|
|
chrono = { version = "*", features = [ "serde" ]}
|
2022-05-05 13:53:58 +00:00
|
|
|
clap = { version = "3.1.15", features = [ "std", "color", "suggestions", "derive", "env" ] }
|
2021-08-31 14:46:31 +00:00
|
|
|
cron = "*"
|
|
|
|
derive_builder = "0.10.2"
|
|
|
|
futures = "*"
|
|
|
|
futures-util = "*"
|
|
|
|
hmac = "0.10"
|
|
|
|
http = "*"
|
|
|
|
jwt = "0.13"
|
2021-10-28 16:04:09 +00:00
|
|
|
ldap3_server = ">=0.1.9"
|
2021-08-31 14:46:31 +00:00
|
|
|
lldap_auth = { path = "../auth" }
|
|
|
|
log = "*"
|
|
|
|
orion = "0.16"
|
2022-05-05 14:12:10 +00:00
|
|
|
native-tls = "0.2.10"
|
2021-08-31 14:46:31 +00:00
|
|
|
serde = "*"
|
|
|
|
serde_json = "1"
|
|
|
|
sha2 = "0.9"
|
|
|
|
sqlx-core = "=0.5.1"
|
|
|
|
thiserror = "*"
|
|
|
|
time = "0.2"
|
2022-06-24 10:51:38 +00:00
|
|
|
tokio = { version = "1.13.1", features = ["full"] }
|
2022-05-05 14:12:10 +00:00
|
|
|
tokio-native-tls = "0.3"
|
2021-08-31 14:46:31 +00:00
|
|
|
tokio-util = "0.6.3"
|
2021-10-23 16:01:35 +00:00
|
|
|
tokio-stream = "*"
|
2021-08-31 14:46:31 +00:00
|
|
|
tracing = "*"
|
|
|
|
tracing-actix-web = "0.4.0-beta.7"
|
|
|
|
tracing-log = "*"
|
2021-11-14 00:02:48 +00:00
|
|
|
tracing-subscriber = "0.3"
|
2021-08-31 14:46:31 +00:00
|
|
|
rand = { version = "0.8", features = ["small_rng", "getrandom"] }
|
|
|
|
juniper_actix = "0.4.0"
|
|
|
|
juniper = "0.15.6"
|
2021-09-16 07:26:31 +00:00
|
|
|
itertools = "0.10.1"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
|
|
|
[dependencies.opaque-ke]
|
2021-11-14 00:15:03 +00:00
|
|
|
version = "0.6"
|
2021-08-31 14:46:31 +00:00
|
|
|
|
2021-10-29 03:23:15 +00:00
|
|
|
[dependencies.lettre]
|
|
|
|
version = "0.10.0-rc.3"
|
|
|
|
features = [
|
|
|
|
"builder",
|
2021-11-03 08:09:19 +00:00
|
|
|
"serde",
|
2021-10-29 03:23:15 +00:00
|
|
|
"smtp-transport",
|
|
|
|
"tokio1-native-tls",
|
|
|
|
"tokio1",
|
|
|
|
]
|
|
|
|
|
2021-08-31 14:46:31 +00:00
|
|
|
[dependencies.sqlx]
|
|
|
|
version = "0.5.1"
|
|
|
|
features = [
|
|
|
|
"any",
|
|
|
|
"chrono",
|
|
|
|
"macros",
|
|
|
|
"mysql",
|
|
|
|
"postgres",
|
|
|
|
"runtime-actix-native-tls",
|
|
|
|
"sqlite",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies.sea-query]
|
|
|
|
version = "0.9.4"
|
|
|
|
features = ["with-chrono"]
|
|
|
|
|
|
|
|
[dependencies.figment]
|
|
|
|
features = ["env", "toml"]
|
|
|
|
version = "*"
|
|
|
|
|
2021-11-11 09:36:42 +00:00
|
|
|
[dependencies.secstr]
|
|
|
|
features = ["serde"]
|
|
|
|
version = "*"
|
|
|
|
|
2021-11-20 15:33:38 +00:00
|
|
|
[dependencies.openssl-sys]
|
|
|
|
features = ["vendored"]
|
|
|
|
version = "*"
|
|
|
|
|
2021-08-31 14:46:31 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
mockall = "0.9.1"
|