lldap/Cargo.toml

79 lines
1.6 KiB
TOML
Raw Normal View History

2021-06-23 11:13:05 +02:00
[workspace]
members = [".", "auth", "app"]
2021-06-23 11:13:05 +02:00
2021-03-02 12:45:30 +01:00
[package]
2021-03-02 20:30:43 +01:00
authors = ["Valentin Tolmer <valentin@tolmer.fr>", "Steve Barrau <steve.barrau@gmail.com>", "Thomas Wickham <mackwic@gmail.com>"]
2021-03-02 20:13:58 +01:00
edition = "2018"
2021-03-02 20:30:43 +01:00
name = "lldap"
2021-03-02 12:45:30 +01:00
version = "0.1.0"
2021-03-02 12:45:30 +01:00
[dependencies]
2021-08-22 16:30:25 +02:00
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"
2021-08-22 16:30:25 +02:00
actix-web = "4.0.0-beta.8"
actix-web-httpauth = "0.6.0-beta.2"
2021-03-02 20:13:58 +01:00
anyhow = "*"
2021-05-14 09:15:37 +02:00
async-trait = "0.1"
base64 = "0.13"
bincode = "1.3"
2021-05-09 11:52:53 +02:00
chrono = { version = "*", features = [ "serde" ]}
2021-05-14 09:15:37 +02:00
clap = "3.0.0-beta.2"
2021-05-25 10:39:09 +02:00
cron = "*"
derive_builder = "0.10.2"
2021-03-06 23:39:34 +01:00
futures = "*"
2021-03-02 23:07:01 +01:00
futures-util = "*"
2021-05-14 09:15:37 +02:00
hmac = "0.10"
2021-03-02 20:13:58 +01:00
http = "*"
2021-05-14 09:15:37 +02:00
jwt = "0.13"
2021-03-06 23:39:34 +01:00
ldap3_server = "*"
lldap_auth = { path = "auth" }
2021-03-02 20:51:33 +01:00
log = "*"
orion = "0.16"
2021-03-02 20:13:58 +01:00
serde = "*"
2021-05-14 09:15:37 +02:00
serde_json = "1"
sha2 = "0.9"
2021-05-30 19:27:54 +02:00
sqlx-core = "=0.5.1"
2021-03-02 20:30:43 +01:00
thiserror = "*"
2021-05-14 09:15:37 +02:00
time = "0.2"
tokio = { version = "1.2.0", features = ["full"] }
tokio-util = "0.6.3"
2021-03-02 20:13:58 +01:00
tracing = "*"
tracing-actix-web = "0.4.0-beta.7"
2021-03-02 20:13:58 +01:00
tracing-log = "*"
tracing-subscriber = "*"
2021-05-20 17:40:30 +02:00
rand = { version = "0.8", features = ["small_rng", "getrandom"] }
juniper_actix = "0.4.0"
juniper = "0.15.6"
2021-05-14 09:15:37 +02:00
2021-06-15 10:12:41 +02:00
# TODO: update to 0.6 when out.
[dependencies.opaque-ke]
git = "https://github.com/novifinancial/opaque-ke"
rev = "eb59676a940b15f77871aefe1e46d7b5bf85f40a"
2021-06-15 10:12:41 +02:00
2021-05-14 09:15:37 +02:00
[dependencies.sqlx]
version = "0.5.1"
2021-05-14 09:15:37 +02:00
features = [
"any",
"chrono",
"macros",
"mysql",
"postgres",
"runtime-actix-native-tls",
"sqlite",
]
[dependencies.sea-query]
version = "0.9.4"
features = ["with-chrono"]
2021-03-02 20:13:58 +01:00
[dependencies.figment]
2021-05-14 09:15:37 +02:00
features = ["env", "toml"]
2021-03-02 20:13:58 +01:00
version = "*"
[dev-dependencies]
mockall = "0.9.1"