mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-27 04:50:31 +00:00
22 lines
652 B
TOML
22 lines
652 B
TOML
[package]
|
|
name = "example-sse"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../../axum" }
|
|
axum-extra = { path = "../../axum-extra", features = ["typed-header"] }
|
|
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
|
|
headers = "0.4"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
tower-http = { version = "0.6.1", features = ["fs", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
eventsource-stream = "0.2"
|
|
reqwest = { version = "0.12", features = ["stream"] }
|
|
reqwest-eventsource = "0.6"
|