2023-05-25 16:01:50 +00:00
|
|
|
[package]
|
2023-06-18 19:27:04 +00:00
|
|
|
name = "skynet_ldap_backend"
|
2023-05-25 16:01:50 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-08-05 20:51:09 +00:00
|
|
|
[[bin]]
|
2023-08-05 21:05:44 +00:00
|
|
|
name = "update_data"
|
2023-05-25 16:01:50 +00:00
|
|
|
|
2023-06-18 16:19:59 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "update_groups"
|
|
|
|
|
2023-05-25 16:01:50 +00:00
|
|
|
[dependencies]
|
2023-05-25 22:38:14 +00:00
|
|
|
# for the ldap
|
2023-05-25 21:02:42 +00:00
|
|
|
ldap3="0.11.1"
|
2023-05-25 22:38:14 +00:00
|
|
|
|
|
|
|
# to move some config into env
|
2023-07-29 21:19:15 +00:00
|
|
|
dotenvy = "0.15.7"
|
2023-05-25 22:38:14 +00:00
|
|
|
|
|
|
|
# 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"
|
2023-06-04 14:26:59 +00:00
|
|
|
|
|
|
|
# create random strings
|
|
|
|
rand = "0.8.5"
|
2023-06-04 18:39:01 +00:00
|
|
|
|
|
|
|
# fancy time stuff
|
|
|
|
chrono = "0.4.26"
|
2023-07-16 22:29:52 +00:00
|
|
|
|
|
|
|
# handlign teh csv export from wolves
|
|
|
|
csv = "1.2"
|
2023-07-29 20:38:03 +00:00
|
|
|
|
|
|
|
# for email
|
|
|
|
lettre = "0.10.4"
|
|
|
|
maud = "0.25.0"
|