2021-08-18 00:49:01 +02:00
|
|
|
[package]
|
|
|
|
name = "example-todos"
|
|
|
|
version = "0.1.0"
|
2022-06-17 20:11:35 +02:00
|
|
|
edition = "2021"
|
2021-08-18 00:49:01 +02:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-03 12:38:48 +01:00
|
|
|
axum = { path = "../../axum" }
|
2022-06-10 08:59:17 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-08-18 00:49:01 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
tower = { version = "0.4", features = ["util", "timeout"] }
|
2023-02-24 21:51:30 +01:00
|
|
|
tower-http = { version = "0.4.0", features = ["add-extension", "trace"] }
|
2022-06-10 08:59:17 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2022-05-05 07:48:49 +02:00
|
|
|
uuid = { version = "1.0", features = ["serde", "v4"] }
|