Spaces:
Running
Running
更新 Cargo.toml
Browse files- Cargo.toml +14 -1
Cargo.toml
CHANGED
|
@@ -1 +1,14 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "openclaw-hf-sync"
|
| 3 |
+
version = "0.2.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
anyhow = "1.0"
|
| 8 |
+
md5 = "0.7"
|
| 9 |
+
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
|
| 10 |
+
serde = { version = "1.0", features = ["derive"] }
|
| 11 |
+
serde_json = "1.0"
|
| 12 |
+
shell-words = "1.1"
|
| 13 |
+
tokio = { version = "1.37", features = ["full"] }
|
| 14 |
+
walkdir = "2.5"
|