2023-08-02 10:15:47 +02:00
|
|
|
[package]
|
|
|
|
|
name = "example-reqwest-response"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
axum = { path = "../../axum" }
|
2026-02-11 21:18:29 +09:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["stream"] }
|
2023-08-02 10:15:47 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
|
tokio-stream = "0.1"
|
2024-09-27 16:50:52 +00:00
|
|
|
tower-http = { version = "0.6.1", features = ["trace"] }
|
2023-08-02 10:15:47 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|