26 lines
823 B
TOML
26 lines
823 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"
|
|
runtime-tokio = "0.0.0"
|
|
serde = { version = "1.0.197", features = ["derive", "rc"] }
|
|
sqlx = { version = "0.7.4", features = ["runtime-tokio", "mysql"] }
|
|
strum = { version = "0.26.2", features = ["derive"] }
|
|
strum_macros = "0.26.2"
|
|
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"] }
|
|
|