Spaces:
Sleeping
Sleeping
更新 Cargo.toml
Browse files- Cargo.toml +13 -8
Cargo.toml
CHANGED
|
@@ -1,14 +1,19 @@
|
|
| 1 |
-
|
| 2 |
name = "openclaw-hf-sync"
|
| 3 |
version = "0.2.0"
|
| 4 |
edition = "2021"
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
[dependencies]
|
| 7 |
-
anyhow = "1
|
|
|
|
| 8 |
md5 = "0.7"
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
tokio = { version = "1
|
| 14 |
-
walkdir = "2
|
|
|
|
| 1 |
+
[package]
|
| 2 |
name = "openclaw-hf-sync"
|
| 3 |
version = "0.2.0"
|
| 4 |
edition = "2021"
|
| 5 |
|
| 6 |
+
[[bin]]
|
| 7 |
+
name = "openclaw-hf-sync"
|
| 8 |
+
path = "src/main.rs"
|
| 9 |
+
|
| 10 |
[dependencies]
|
| 11 |
+
anyhow = "1"
|
| 12 |
+
base64 = "0.22"
|
| 13 |
md5 = "0.7"
|
| 14 |
+
nix = { version = "0.29", features = ["signal"] }
|
| 15 |
+
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
| 16 |
+
serde = { version = "1", features = ["derive"] }
|
| 17 |
+
serde_json = "1"
|
| 18 |
+
tokio = { version = "1", features = ["full"] }
|
| 19 |
+
walkdir = "2"
|