mentorenwahl/auth/Cargo.toml

30 lines
704 B
TOML

[package]
name = "auth"
version = "0.1.0"
edition = "2021"
[profile.release]
codegen-units = 1
lto = "fat"
strip = true
panic = "abort"
[dependencies]
actix-web = "4.3.0"
anyhow = { version = "1.0.68", features = ["backtrace"] }
base64 = "0.21.0"
deunicode = "1.3.3"
envconfig = "0.10.0"
fancy-regex = "0.11.0"
futures = "0.3.25"
lazy_static = "1.4.0"
mime = "0.3.16"
serde = { version = "1.0.152", features = ["derive"] }
tempfile = "3.3.0"
untis = { git = "https://git.dergrimm.net/dergrimm/untis.rs.git", branch = "main" }
url = "2.3.1"
uuid = { version = "1.2.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"