Spaces:
Build error
Build error
Update Cargo.toml
Browse files- Cargo.toml +8 -0
Cargo.toml
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[dependencies]
|
| 2 |
+
axum = { version = "0.7", features = ["macros"] }
|
| 3 |
+
tokio = { version = "1.0", features = ["full"] }
|
| 4 |
+
chromiumoxide = { version = "0.5", features = ["tokio"] } # Fast Browser Control
|
| 5 |
+
serde = { version = "1.0", features = ["derive"] }
|
| 6 |
+
tower-http = { version = "0.5", features = ["fs", "cors"] }
|
| 7 |
+
futures-util = "0.3"
|
| 8 |
+
reqwest = "0.11"
|