Create Cargo.toml
Browse files- Cargo.toml +19 -0
Cargo.toml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "app"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
axum = { version = "0.7", features = ["multipart", "macros"] }
|
| 8 |
+
tokio = { version = "1.0", features = ["full"] }
|
| 9 |
+
serde = { version = "1.0", features = ["derive"] }
|
| 10 |
+
serde_json = "1.0"
|
| 11 |
+
reqwest = { version = "0.12", features = ["json", "multipart", "stream"] }
|
| 12 |
+
tower-http = { version = "0.6", features = ["trace", "cors"] }
|
| 13 |
+
tracing = "0.1"
|
| 14 |
+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
| 15 |
+
uuid = { version = "1.0", features = ["v4"] }
|
| 16 |
+
chrono = { version = "0.4", features = ["serde"] }
|
| 17 |
+
dotenvy = "0.15"
|
| 18 |
+
mime_guess = "2.0"
|
| 19 |
+
futures-util = "0.3"
|