mirror of
https://github.com/tokio-rs/axum.git
synced 2025-01-22 00:04:48 +01:00
1c60255b9f
* Add project based on the readme example * Add readme project link to README.md * Typo correction * Update examples/readme-example/Cargo.toml Use tracing-subscriber 0.2 to match other the other examples Co-authored-by: David Pedersen <david.pdrsn@gmail.com> * Update README.md Use original readme phrasing for crate docs Co-authored-by: David Pedersen <david.pdrsn@gmail.com> * Rename readme-exmaple to readme * Revert tracing call to debug from info Co-authored-by: Jordan Gould <jordan@tineye.com> Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
13 lines
292 B
TOML
13 lines
292 B
TOML
[package]
|
|
name = "example-readme"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../.." }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.68"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2"
|