ITSM/Cargo.toml

37 lines
1.1 KiB
TOML
Executable File

[package]
name = "itsm"
version = "1.0.0"
edition = "2021"
description = "ITSM-Plattform (Service-Katalog, Tickets, Wissensdatenbank, CMDB) -- Rust/axum, ITIL-v3/v4-orientiert"
[dependencies]
axum = "0.7"
axum-extra = { version = "0.9", features = ["cookie"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "time"] }
tower-http = { version = "0.5", features = ["fs"] }
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.4"
form_urlencoded = "1"
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "with-serde_json-1"] }
deadpool-postgres = "0.14"
chrono = { version = "0.4", features = ["serde"] }
argon2 = "0.5"
pbkdf2 = "0.12"
sha2 = "0.10"
subtle = "2"
rand = "0.8"
hex = "0.4"
base64 = "0.21"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
anyhow = "1"
time = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = "thin"
strip = true