Create Cargo.toml
Browse files- Cargo.toml +14 -0
Cargo.toml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "puter-chat-web"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
axum = "0.7"
|
| 8 |
+
tokio = { version = "1", features = ["full"] }
|
| 9 |
+
reqwest = { version = "0.12", features = ["json"] }
|
| 10 |
+
serde = { version = "1.0", features = ["derive"] }
|
| 11 |
+
serde_json = "1.0"
|
| 12 |
+
tower-http = { version = "0.5", features = ["fs"] } # без CORS, он не нужен
|
| 13 |
+
tracing = "0.1"
|
| 14 |
+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|