2022-04-03 12:28:29 +02:00
|
|
|
[package]
|
|
|
|
|
name = "example-stream-to-file"
|
|
|
|
|
version = "0.1.0"
|
2022-06-17 20:11:35 +02:00
|
|
|
edition = "2021"
|
2022-04-03 12:28:29 +02:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
axum = { path = "../../axum", features = ["multipart"] }
|
2025-05-25 09:39:35 +02:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
|
2022-04-03 12:28:29 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|