Files
rust-otus/smart-house-web/backend/Cargo.toml

25 lines
473 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[profile.release]
opt-level = "s"
strip = "symbols"
lto = true
panic = "abort"
codegen-units = 1
[profile.release.build-override]
opt-level = "s"
strip = "symbols"
codegen-units = 1
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1.52", features = ["rt", "rt-multi-thread", "signal", "time"] }
axum = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"