Files
axum/examples/hello-world/Cargo.toml
T

14 lines
326 B
TOML
Raw Normal View History

[package]
name = "example-hello-world"
version = "0.1.0"
edition = "2018"
publish = false
[dependencies]
axum = { path = "../../axum" }
tokio = { version = "1.0", features = ["full"] }
2022-02-10 16:46:42 +01:00
axum-macros = { path = "../../axum-macros" }
2022-02-13 12:49:12 +01:00
axum-extra = { path = "../../axum-extra" }
2022-02-10 16:46:42 +01:00
serde = { version = "1.0", features = ["derive"] }