aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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"