35 lines
867 B
TOML
35 lines
867 B
TOML
[package]
|
|
name = "sustenance"
|
|
version = "0.9.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
argon2 = "0.5"
|
|
async-trait = "0.1"
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
barcoders = { version = "2.0.0", features = ["svg"] }
|
|
base64 = "0.22"
|
|
futures-util = "0.3"
|
|
hex = "0.4"
|
|
maud = "0.27"
|
|
pulldown-cmark = "0.13"
|
|
rand = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "sqlite", "macros", "migrate", "tls-rustls"] }
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower = "0.5"
|
|
tower-http = { version = "0.6", features = ["fs", "trace", "set-header"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
url = "2"
|
|
webauthn-rs = "0.3"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|