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-11 09:14:15 +00:00
|
|
|
|
2021-05-09 09:06:23 +00:00
|
|
|
[patch.crates-io]
|
|
|
|
actix-files = { git = "https://github.com/actix/actix-web", rev = "a9dc1586a0935c48c3f841761bf81c43ca9e2651" }
|
|
|
|
actix-http = { git = "https://github.com/actix/actix-web", rev = "a9dc1586a0935c48c3f841761bf81c43ca9e2651" }
|
|
|
|
actix-web = { git = "https://github.com/actix/actix-web", rev = "a9dc1586a0935c48c3f841761bf81c43ca9e2651" }
|
2021-05-12 18:42:15 +00:00
|
|
|
actix-web-httpauth = { git = "https://github.com/nhruo123/actix-extras", rev = "b4e8db446843a99b06c7ec40f18ef7b59ee7e955" }
|
2021-05-09 09:06:23 +00:00
|
|
|
|
2021-03-02 11:45:30 +00:00
|
|
|
[dependencies]
|
2021-05-08 11:27:48 +00:00
|
|
|
actix = "0.11.1"
|
2021-05-09 09:06:23 +00:00
|
|
|
actix-files = "0.6.0-beta.4"
|
2021-05-08 11:27:48 +00:00
|
|
|
actix-http = "3.0.0-beta.6"
|
|
|
|
actix-rt = "2.2"
|
|
|
|
actix-server = "2.0.0-beta.5"
|
|
|
|
actix-service = "2.0.0"
|
|
|
|
actix-web = "4.0.0-beta.6"
|
2021-05-12 18:42:15 +00:00
|
|
|
actix-web-httpauth = "0.6.0-beta.1"
|
2021-03-02 19:13:58 +00:00
|
|
|
anyhow = "*"
|
2021-03-02 19:30:43 +00:00
|
|
|
clap = "3.0.0-beta.2"
|
2021-05-09 09:52:53 +00:00
|
|
|
chrono = { version = "*", features = [ "serde" ]}
|
2021-03-06 22:39:34 +00:00
|
|
|
futures = "*"
|
2021-03-02 22:07:01 +00:00
|
|
|
futures-util = "*"
|
2021-03-02 19:13:58 +00:00
|
|
|
http = "*"
|
2021-03-06 22:39:34 +00:00
|
|
|
ldap3_server = "*"
|
2021-03-02 19:51:33 +00:00
|
|
|
log = "*"
|
2021-03-02 19:13:58 +00:00
|
|
|
serde = "*"
|
2021-04-11 21:01:24 +00:00
|
|
|
sqlx = { version = "0.5", features = [ "runtime-actix-native-tls", "any", "sqlite", "mysql", "postgres", "macros" , "chrono"] }
|
2021-03-02 19:30:43 +00:00
|
|
|
thiserror = "*"
|
2021-03-07 11:36:12 +00:00
|
|
|
tokio = { version = "1.2.0", features = ["full"] }
|
|
|
|
tokio-util = "0.6.3"
|
2021-03-02 19:13:58 +00:00
|
|
|
tracing = "*"
|
2021-03-06 22:39:34 +00:00
|
|
|
tracing-actix-web = "0.3.0-beta.2"
|
2021-03-02 19:13:58 +00:00
|
|
|
tracing-log = "*"
|
|
|
|
tracing-subscriber = "*"
|
2021-04-07 18:14:21 +00:00
|
|
|
async-trait = "0.1.48"
|
2021-04-14 18:52:38 +00:00
|
|
|
sea-query = { version = "0.9.4", features = [ "with-chrono" ] }
|
2021-05-08 09:34:55 +00:00
|
|
|
lldap_model = { path = "model" }
|
|
|
|
lldap_app = { path = "app" }
|
2021-05-09 09:52:53 +00:00
|
|
|
serde_json = "1.0.64"
|
2021-05-12 18:42:15 +00:00
|
|
|
jwt = "0.13.0"
|
|
|
|
hmac = "0.10"
|
|
|
|
sha2 = "0.9.5"
|
|
|
|
time = "0.2.26"
|
2021-03-02 19:13:58 +00:00
|
|
|
|
|
|
|
[dependencies.figment]
|
|
|
|
features = ["toml", "env"]
|
|
|
|
version = "*"
|
2021-03-11 09:14:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
mockall = "0.9.1"
|