Skip to content

Commit

Permalink
Merge pull request #23 from bandprotocol/support-rust-1.70
Browse files Browse the repository at this point in the history
update wasm-instrument to support rust 1.70
  • Loading branch information
taobun authored Nov 30, 2023
2 parents abfd2cd + eacbe3c commit 06fac5f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "owasm-crypto"
readme = "README.md"
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto"
version = "0.2.2"
version = "0.3.1"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "owasm-kit"
readme = "README.md"
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/kit"
version = "0.3.0"
version = "0.3.1"

[dependencies]
num = "0.4.0"
8 changes: 5 additions & 3 deletions packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ license = "Apache-2.0"
name = "owasm-vm"
readme = "README.md"
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/vm"
version = "0.2.2"
version = "0.3.1"

[dependencies]
assert_matches = "1.3.0"
clru = "0.2.0"
hex = "0.4"
owasm-crypto = {path = "../crypto", version = "0.2.2"}
owasm-crypto = {path = "../crypto", version = "0.3.1"}
sha2 = "0.9.1"
tempfile = "3.1.0"
wasm-instrument = "0.2.0"
wasm-instrument = { version = "0.4.0", default-features = false, features = [
"sign_ext"
] }
wasmer = {version = "2.3.0", default-features = false, features = ["singlepass", "compiler", "universal"]}
wasmer-middlewares = "2.3.0"
2 changes: 1 addition & 1 deletion packages/vm/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "owasm-vm-fuzz"
version = "0.2.2"
version = "0.3.1"
authors = ["Automatically generated"]
publish = false
edition = "2018"
Expand Down

0 comments on commit 06fac5f

Please sign in to comment.