Skip to content

Commit

Permalink
Fixed dependencies a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Aug 10, 2021
1 parent 005d129 commit 1e980b8
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 10 deletions.
26 changes: 21 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ js-sys = "0.3.51"
wasmer-derive = { path = "../derive", version = "2.0.0" }
# - Optional dependencies for `js`.
wasmparser = { version = "0.78", default-features = false, optional = true }
hashbrown = { version = "0.9", optional = true }
hashbrown = { version = "0.11", optional = true }
# - Development Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wat = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cranelift-entity = { version = "0.76", default-features = false }
cranelift-codegen = { version = "0.76", default-features = false, features = ["x86", "arm64"] }
cranelift-frontend = { version = "0.76", default-features = false }
tracing = "0.1"
hashbrown = { version = "0.9", optional = true }
hashbrown = { version = "0.11", optional = true }
rayon = "1.5"
more-asserts = "0.2"
gimli = { version = "0.25", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler-singlepass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ wasmer-compiler = { path = "../compiler", version = "2.0.0", features = ["transl
wasmer-vm = { path = "../vm", version = "2.0.0" }
wasmer-types = { path = "../types", version = "2.0.0", default-features = false, features = ["std"] }
rayon = { version = "1.5", optional = true }
hashbrown = { version = "0.9", optional = true }
hashbrown = { version = "0.11", optional = true }
more-asserts = "0.2"
dynasm = "1.0"
dynasmrt = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ wasmer-types = { path = "../types", version = "2.0.0", default-features = false
wasmparser = { version = "0.78", optional = true, default-features = false }
target-lexicon = { version = "0.12", default-features = false }
enumset = "1.0"
hashbrown = { version = "0.9", optional = true }
hashbrown = { version = "0.11", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0"
serde_bytes = { version = "0.11", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/wast/src/wast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ impl Wast {
}
AssertInvalid {
span: _,
mut module,
module,
message,
} => {
let wasm = match module {
Expand Down

0 comments on commit 1e980b8

Please sign in to comment.