mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
Tidy up dependencies
This commit is contained in:
parent
2de589d05c
commit
e0bcb58d36
38
Cargo.toml
38
Cargo.toml
@ -20,34 +20,48 @@ actix-service = "2.0.0"
|
||||
actix-web = "4.0.0-beta.6"
|
||||
actix-web-httpauth = "0.6.0-beta.1"
|
||||
anyhow = "*"
|
||||
clap = "3.0.0-beta.2"
|
||||
async-trait = "0.1"
|
||||
chrono = { version = "*", features = [ "serde" ]}
|
||||
clap = "3.0.0-beta.2"
|
||||
futures = "*"
|
||||
futures-util = "*"
|
||||
hmac = "0.10"
|
||||
http = "*"
|
||||
jwt = "0.13"
|
||||
ldap3_server = "*"
|
||||
lldap_app = { path = "app" }
|
||||
lldap_model = { path = "model" }
|
||||
log = "*"
|
||||
serde = "*"
|
||||
sqlx = { version = "0.5", features = [ "runtime-actix-native-tls", "any", "sqlite", "mysql", "postgres", "macros" , "chrono"] }
|
||||
serde_json = "1"
|
||||
sha2 = "0.9"
|
||||
thiserror = "*"
|
||||
time = "0.2"
|
||||
tokio = { version = "1.2.0", features = ["full"] }
|
||||
tokio-util = "0.6.3"
|
||||
tracing = "*"
|
||||
tracing-actix-web = "0.3.0-beta.2"
|
||||
tracing-log = "*"
|
||||
tracing-subscriber = "*"
|
||||
async-trait = "0.1.48"
|
||||
sea-query = { version = "0.9.4", features = [ "with-chrono" ] }
|
||||
lldap_model = { path = "model" }
|
||||
lldap_app = { path = "app" }
|
||||
serde_json = "1.0.64"
|
||||
jwt = "0.13.0"
|
||||
hmac = "0.10"
|
||||
sha2 = "0.9.5"
|
||||
time = "0.2.26"
|
||||
|
||||
[dependencies.sqlx]
|
||||
version = "0.5"
|
||||
features = [
|
||||
"any",
|
||||
"chrono",
|
||||
"macros",
|
||||
"mysql",
|
||||
"postgres",
|
||||
"runtime-actix-native-tls",
|
||||
"sqlite",
|
||||
]
|
||||
|
||||
[dependencies.sea-query]
|
||||
version = "0.9.4"
|
||||
features = ["with-chrono"]
|
||||
|
||||
[dependencies.figment]
|
||||
features = ["toml", "env"]
|
||||
features = ["env", "toml"]
|
||||
version = "*"
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -5,16 +5,24 @@ authors = ["Valentin Tolmer <valentin@tolmer.fr>", "Steve Barrau <steve.barrau@g
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
yew = "0.17"
|
||||
wasm-bindgen = "0.2"
|
||||
lldap_model = { path = "../model" }
|
||||
anyhow = "1"
|
||||
web-sys = { version = "0.3", features = [ "console", "Document", "Element", "HtmlDocument" ] }
|
||||
serde_json = "1"
|
||||
serde = "1"
|
||||
chrono = "*"
|
||||
http = "0.2.4"
|
||||
jwt = "0.13"
|
||||
chrono = "*"
|
||||
lldap_model = { path = "../model" }
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
wasm-bindgen = "0.2"
|
||||
yew = "0.17"
|
||||
|
||||
[dependencies.web-sys]
|
||||
version = "0.3"
|
||||
features = [
|
||||
"Document",
|
||||
"Element",
|
||||
"HtmlDocument",
|
||||
"console",
|
||||
]
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
@ -8,8 +8,20 @@ edition = "2018"
|
||||
js = []
|
||||
|
||||
[dependencies]
|
||||
chrono = { version = "*", features = [ "serde" ]}
|
||||
serde = "*"
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
sqlx = { version = "0.5", features = [ "runtime-actix-native-tls", "any", "sqlite", "mysql", "postgres", "macros" , "chrono"] }
|
||||
[dependencies.chrono]
|
||||
version = "*"
|
||||
features = [ "serde" ]
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx]
|
||||
version = "0.5"
|
||||
features = [
|
||||
"any",
|
||||
"chrono",
|
||||
"macros",
|
||||
"mysql",
|
||||
"postgres",
|
||||
"runtime-actix-native-tls",
|
||||
"sqlite",
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user