distributed-systems-challenge/Cargo.toml

19 lines
470 B
TOML
Raw Normal View History

[package]
name = "echo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
axum = {version="0.7.4", features = ["json"]}
http-body-util = "0.1.0"
mime = "0.3.17"
serde = {version ="1.0.195", features = ["derive"]}
serde_json = "1.0.111"
tokio = {version = "1.35.1", features = ["full"]}
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"