ldap_backend/Cargo.toml

44 lines
1,002 B
TOML
Raw Normal View History

2023-05-25 17:01:50 +01:00
[package]
name = "skynet_ldap_backend"
2023-05-25 17:01:50 +01:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "update_data"
2023-05-25 17:01:50 +01:00
[[bin]]
name = "update_groups"
2023-05-25 17:01:50 +01:00
[dependencies]
# for the ldap
2023-05-25 22:02:42 +01:00
ldap3="0.11.1"
# to move some config into env
2023-07-29 22:19:15 +01:00
dotenvy = "0.15.7"
# For tide
tide = "0.16.0"
async-std = { version = "1", features = ["attributes", "tokio1"] }
serde = { version = "1.0", features = ["derive"] }
# For sqlite
sqlx = { version = "0.7.1", features = [ "runtime-async-std-native-tls", "sqlite" ] }
# Lib to get data from wolves in a standardised format
wolves_oxidised = { git = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git" }
# wolves_oxidised = { path = "../wolves-oxidised", features = ["unstable"] }
2023-06-04 15:26:59 +01:00
# create random strings
rand = "0.8.5"
# fancy time stuff
chrono = "0.4.26"
2023-07-29 21:38:03 +01:00
# for email
lettre = "0.10.4"
maud = "0.25.0"
2023-07-30 23:14:13 +01:00
# verifying ssh keys
2024-06-03 23:57:34 +01:00
ssh-key = { version = "0.6.1", features = ["crypto", "dsa"] }