diff --git a/Cargo.lock b/Cargo.lock index 3973169..7250273 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1446,6 +1446,20 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "hyperlight-common" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a29190c35e3883c3e0944007f47a0997f8ebcf784a2a3f35c0311e513b019416" +dependencies = [ + "anyhow", + "flatbuffers", + "log", + "spin", + "thiserror", + "tracing-core", +] + [[package]] name = "hyperlight-guest" version = "0.14.0" @@ -1454,7 +1468,7 @@ checksum = "6ee2682d284171d2bd9e80e3e543de310356c1d8ec65e88028b3e08048d15d3d" dependencies = [ "anyhow", "flatbuffers", - "hyperlight-common", + "hyperlight-common 0.14.0", "hyperlight-guest-tracing", "serde_json", "tracing", @@ -1471,7 +1485,7 @@ dependencies = [ "cfg-if", "flatbuffers", "glob", - "hyperlight-common", + "hyperlight-common 0.14.0", "hyperlight-guest", "hyperlight-guest-macro", "hyperlight-guest-tracing", @@ -1499,7 +1513,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d14e9c34c508ecfba1283a552c3eb118d8ee82d863e2e91377a6059f06cf84dd" dependencies = [ - "hyperlight-common", + "hyperlight-common 0.14.0", "spin", "tracing", "tracing-core", @@ -1523,7 +1537,7 @@ dependencies = [ "gdbstub", "gdbstub_arch", "goblin", - "hyperlight-common", + "hyperlight-common 0.14.0", "hyperlight-guest-tracing", "kvm-bindings", "kvm-ioctls", @@ -1567,7 +1581,7 @@ dependencies = [ "dashmap", "env_logger", "fn-traits", - "hyperlight-common", + "hyperlight-common 0.15.0", "hyperlight-host", "hyperlight-js-runtime", "lazy_static", @@ -1610,7 +1624,7 @@ dependencies = [ "hashbrown 0.17.0", "hex", "hmac", - "hyperlight-common", + "hyperlight-common 0.15.0", "hyperlight-guest", "hyperlight-guest-bin", "rquickjs", diff --git a/Cargo.toml b/Cargo.toml index 8f2eff5..f83c827 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/hyperlight-dev/hyperlight-js" readme = "README.md" [workspace.dependencies] -hyperlight-common = { version = "0.14.0", default-features = false } +hyperlight-common = { version = "0.15.0", default-features = false } hyperlight-guest-bin = { version = "0.14.0" } hyperlight-guest = { version = "0.14.0" } hyperlight-host = { version = "0.14.0", default-features = false }