projectc/Cargo.toml
2024-05-14 11:51:19 +02:00

23 lines
775 B
TOML

[package]
name = "projectc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.5"
ldap3 = "0.11.3"
pandoc = "0.8.11"
serde = { version = "1.0.197", features = ["derive", "rc"] }
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio"] }
strum = { version = "0.26.2", features = ["derive"] }
tera = "1.19.1"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
tokio-util = { version = "0.7.10", features = ["io-util"] }
tower-http = { version = "0.5.2", features = ["fs"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = { version = "1.8.0", features = ["v5", "v4"] }
validator = { version = "0.17.0", features = ["derive"] }