2021-08-18 00:49:01 +02:00
|
|
|
[package]
|
|
|
|
name = "example-multipart-form"
|
|
|
|
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", features = ["multipart"] }
|
2021-08-18 00:49:01 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2024-09-27 18:50:52 +02:00
|
|
|
tower-http = { version = "0.6.1", features = ["limit", "trace"] }
|
2021-08-18 00:49:01 +02:00
|
|
|
tracing = "0.1"
|
2022-03-06 12:37:00 +01:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|