diff --git a/Cargo.toml b/Cargo.toml index f3d96a2..3788995 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmy" -version = "0.5.5" +version = "0.5.6" edition = "2021" resolver = "2" authors = ["henrylee2cn "] @@ -16,7 +16,7 @@ readme = "./README.md" [target.'cfg(not(target_family="wasm"))'.dev-dependencies] -wasmy-vm = { version ="0.5.5", features = [] } +wasmy-vm = { version ="0.5.6", features = [] } structopt = { version = "0.3", features = ["color"] } tokio = { version = "1.17.0", features = ["macros", "rt", "rt-multi-thread"] } [[example]] @@ -31,7 +31,7 @@ path = "examples/vm/cvm.rs" [target.'cfg(target_family="wasm")'.dev-dependencies] -wasmy-abi = "0.5.5" +wasmy-abi = "0.5.6" rand = "0.8.4" [[example]] crate-type = ['cdylib'] diff --git a/wasmy-abi/Cargo.toml b/wasmy-abi/Cargo.toml index 45b4209..4341099 100644 --- a/wasmy-abi/Cargo.toml +++ b/wasmy-abi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmy-abi" -version = "0.5.5" +version = "0.5.6" edition = "2021" resolver = "2" authors = ["henrylee2cn "] @@ -14,7 +14,7 @@ readme = "../README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmy-macros = "0.5.5" +wasmy-macros = "0.5.6" protobuf = { version = "2", features = ["with-bytes"] } anyhow = "1" diff --git a/wasmy-macros/Cargo.toml b/wasmy-macros/Cargo.toml index fb63e76..0f410ab 100644 --- a/wasmy-macros/Cargo.toml +++ b/wasmy-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmy-macros" -version = "0.5.5" +version = "0.5.6" edition = "2021" resolver = "2" authors = ["henrylee2cn "] diff --git a/wasmy-vm/Cargo.toml b/wasmy-vm/Cargo.toml index 6c49245..563090e 100644 --- a/wasmy-vm/Cargo.toml +++ b/wasmy-vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmy-vm" -version = "0.5.5" +version = "0.5.6" edition = "2021" resolver = "2" authors = ["henrylee2cn "] @@ -14,8 +14,8 @@ readme = "../README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmy-macros = "0.5.5" -wasmy-abi = "0.5.5" +wasmy-macros = "0.5.6" +wasmy-abi = "0.5.6" inventory = "0.2.2" wasmer = "2.0.0" wasmer-engine-universal = "2.0.0"