phone/Cargo.toml

27 lines
533 B
TOML
Raw Permalink Normal View History

2023-12-23 20:49:03 +03:00
[package]
name = "phone"
version = "0.1.0"
edition = "2021"
2024-02-29 14:14:04 +03:00
[profile.release]
strip = true
2024-02-29 14:22:22 +03:00
lto = "fat"
2023-12-23 20:49:03 +03:00
[dependencies]
2024-02-29 14:14:04 +03:00
axum = { version = "0.7.2", default-features = false, features = [
"http1",
"tokio",
] }
serde = { version = "1.0.195", features = ["derive"] }
2023-12-23 20:49:03 +03:00
thiserror = "1.0.51"
2024-02-29 14:14:04 +03:00
tokio = { version = "1.35.1", features = [
"macros",
"rt-multi-thread",
"fs",
"process",
] }
toml = "0.8.8"
tower = { version = "0.4.13", default-features = false, features = ["limit"] }
2023-12-23 20:49:03 +03:00
tracing = "0.1.40"
tracing-subscriber = "0.3.18"