22 lines
501 B
TOML
22 lines
501 B
TOML
[package]
|
|
name = "web-template"
|
|
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"
|
|
libc = "0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = "0.7.12"
|
|
tower = "0"
|
|
tower-http = { version = "0", features = ["trace", "timeout"] }
|
|
tracing = "0"
|
|
tracing-subscriber = { version = "0", features = ["json", "env-filter"] }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
panic = "abort"
|