aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Govorov <me@govorov.online>2026-07-12 22:54:02 +0100
committerNikolay Govorov <me@govorov.online>2026-07-12 22:55:52 +0100
commitaceebb27f0cd07c4852f8e927b1a41d307023536 (patch)
tree17539fbfe72577878dca98afc526527dca0c6926
parenta0167823ba254acdda4c29c64fbbad1ca2f8a1af (diff)
downloadtar
tar.gz
tar.bz2
tar.lz
tar.xz
tar.zst
zip
Move tokio version to workspace level
Diffstat
-rw-r--r--Cargo.lock2+2 −0
-rw-r--r--Cargo.toml1+1 −0
-rw-r--r--crates/hule-vmm/Cargo.toml2+1 −1
-rw-r--r--crates/hule/Cargo.toml2+1 −1
4 files changed, 5 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 88fde04..6e8c52a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -599,7 +599,9 @@ name = "hule-vmm"
version = "0.1.0"
dependencies = [
"async-trait",
+ "base64",
"hule-image",
+ "serde_json",
"tokio",
"uuid",
]
diff --git a/Cargo.toml b/Cargo.toml
index ef31bac..c21c088 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -22,3 +22,4 @@ hule-image = { path = "crates/hule-image" }
# external dependencies
serde = { version = "1", features = ["derive"] }
serde_json = "1"
+tokio = "1"
diff --git a/crates/hule-vmm/Cargo.toml b/crates/hule-vmm/Cargo.toml
index 9e2a649..ed32410 100644
--- a/crates/hule-vmm/Cargo.toml
+++ b/crates/hule-vmm/Cargo.toml
@@ -15,5 +15,5 @@ repository.workspace = true
[dependencies]
hule-image.workspace = true
uuid = { version = "1", features = ["v7"] }
-tokio = { version = "1", features = ["process", "fs", "io-util", "sync"] }
+tokio = { workspace = true, features = ["process", "fs", "io-util", "sync", "net", "time"] }
async-trait = "0.1"
diff --git a/crates/hule/Cargo.toml b/crates/hule/Cargo.toml
index e3fe2b3..cf0d99a 100644
--- a/crates/hule/Cargo.toml
+++ b/crates/hule/Cargo.toml
@@ -18,7 +18,7 @@ hule-vmm.workspace = true
hule-image.workspace = true
serde_json.workspace = true
oci-client = "0.17"
-tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
+tokio = { workspace = true, features = ["rt-multi-thread", "macros", "fs"] }
futures-util = "0.3"
zstd = "0.13"
sha2 = "0.10"