lldap/Cargo.toml

84 lines
1.8 KiB
TOML
Raw Normal View History

2021-06-23 09:13:05 +00:00
[workspace]
members = [".", "model", "app"]
2021-03-02 11:45:30 +00:00
[package]
2021-03-02 19:30:43 +00:00
authors = ["Valentin Tolmer <valentin@tolmer.fr>", "Steve Barrau <steve.barrau@gmail.com>", "Thomas Wickham <mackwic@gmail.com>"]
2021-03-02 19:13:58 +00:00
edition = "2018"
2021-03-02 19:30:43 +00:00
name = "lldap"
2021-03-02 11:45:30 +00:00
version = "0.1.0"
2021-03-02 11:45:30 +00:00
[dependencies]
actix = "0.11.0-beta.3"
actix-http = "3.0.0-beta.6"
actix-rt = "2.1.0"
actix-server = "2.0.0-beta.3"
actix-service = "2.0.0"
actix-web = "4.0.0-beta.3"
2021-03-02 19:13:58 +00:00
anyhow = "*"
2021-05-14 07:15:37 +00:00
async-trait = "0.1"
2021-05-09 09:52:53 +00:00
chrono = { version = "*", features = [ "serde" ]}
2021-05-14 07:15:37 +00:00
clap = "3.0.0-beta.2"
2021-05-25 08:39:09 +00:00
cron = "*"
derive_builder = "0.10.2"
2021-03-06 22:39:34 +00:00
futures = "*"
2021-03-02 22:07:01 +00:00
futures-util = "*"
2021-05-14 07:15:37 +00:00
hmac = "0.10"
2021-03-02 19:13:58 +00:00
http = "*"
2021-05-14 07:15:37 +00:00
jwt = "0.13"
2021-03-06 22:39:34 +00:00
ldap3_server = "*"
2021-05-14 07:15:37 +00:00
lldap_model = { path = "model" }
2021-03-02 19:51:33 +00:00
log = "*"
2021-03-02 19:13:58 +00:00
serde = "*"
2021-05-14 07:15:37 +00:00
serde_json = "1"
sha2 = "0.9"
2021-05-30 17:27:54 +00:00
sqlx-core = "=0.5.1"
2021-03-02 19:30:43 +00:00
thiserror = "*"
2021-05-14 07:15:37 +00:00
time = "0.2"
tokio = { version = "1.2.0", features = ["full"] }
tokio-util = "0.6.3"
2021-03-02 19:13:58 +00:00
tracing = "*"
tracing-actix-web = "0.4.0-beta.7"
2021-03-02 19:13:58 +00:00
tracing-log = "*"
tracing-subscriber = "*"
2021-05-20 15:40:30 +00:00
rand = { version = "0.8", features = ["small_rng", "getrandom"] }
2021-05-14 07:15:37 +00:00
2021-06-15 08:12:41 +00:00
# TODO: update to 0.6 when out.
[dependencies.opaque-ke]
git = "https://github.com/novifinancial/opaque-ke"
2021-06-15 21:07:22 +00:00
rev = "98f1821897cd2800e5bffb2a70541056145e99cc"
2021-06-15 08:12:41 +00:00
2021-05-14 07:15:37 +00:00
[dependencies.sqlx]
version = "0.5.1"
2021-05-14 07:15:37 +00: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 19:13:58 +00:00
[dependencies.figment]
2021-05-14 07:15:37 +00:00
features = ["env", "toml"]
2021-03-02 19:13:58 +00:00
version = "*"
[dependencies.actix-files]
git = "https://github.com/actix/actix-web"
rev = "2d8530feb37447a1dd2e58700b31b987ae8163ef"
#[dependencies.actix-cors]
#git = "https://github.com/nitnelave/actix-extras"
#rev = "39b03cb5d2734482328722219c528cb0a6d375d7"
[dependencies.actix-web-httpauth]
git = "https://github.com/nitnelave/actix-extras"
rev = "39b03cb5d2734482328722219c528cb0a6d375d7"
[dev-dependencies]
mockall = "0.9.1"