feat: added dependencies for teh web end of it
This commit is contained in:
parent
db3261df0d
commit
0da50263b8
2 changed files with 1993 additions and 23 deletions
1998
Cargo.lock
generated
1998
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
16
Cargo.toml
16
Cargo.toml
|
@ -6,6 +6,22 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
# for the ldap
|
||||||
ldap3="0.11.1"
|
ldap3="0.11.1"
|
||||||
|
# to be able to upgrade user passwords
|
||||||
base64 = "0.21"
|
base64 = "0.21"
|
||||||
rust-crypto = "^0.2"
|
rust-crypto = "^0.2"
|
||||||
|
|
||||||
|
# to move some config into env
|
||||||
|
dotenv = "0.15.0"
|
||||||
|
|
||||||
|
# For tide
|
||||||
|
tide = "0.16.0"
|
||||||
|
async-std = { version = "1.12.0", features = ["attributes"] }
|
||||||
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
|
||||||
|
# For sqlite
|
||||||
|
sqlx = { version = "0.6.3", features = [ "runtime-async-std-native-tls", "sqlite" ] }
|
||||||
|
|
||||||
|
# to make the http requests
|
||||||
|
surf = "2.3.2"
|
||||||
|
|
Loading…
Reference in a new issue