Skip to content

Commit

Permalink
Update all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Aug 10, 2021
1 parent b91b2c2 commit 005d129
Show file tree
Hide file tree
Showing 9 changed files with 75 additions and 94 deletions.
102 changes: 27 additions & 75 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ test-generator = { path = "tests/lib/test-generator" }
build-deps = "0.1.4"
anyhow = "1.0"
glob = "0.3"
rustc_version = "0.3"
rustc_version = "0.4"

[dev-dependencies]
anyhow = "1.0"
Expand Down
10 changes: 5 additions & 5 deletions lib/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ edition = "2018"
wasmer-compiler = { path = "../compiler", version = "2.0.0", features = ["translator"], default-features = false }
wasmer-vm = { path = "../vm", version = "2.0.0" }
wasmer-types = { path = "../types", version = "2.0.0", default-features = false, features = ["std"] }
cranelift-entity = { version = "0.74", default-features = false }
cranelift-codegen = { version = "0.74", default-features = false, features = ["x86", "arm64"] }
cranelift-frontend = { version = "0.74", default-features = false }
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 }
rayon = "1.5"
more-asserts = "0.2"
gimli = { version = "0.24", optional = true }
gimli = { version = "0.25", optional = true }
smallvec = "1.6"
loupe = "0.1"

[dev-dependencies]
target-lexicon = { version = "0.12", default-features = false }
cranelift-codegen = { version = "0.74", features = ["all-arch"] }
cranelift-codegen = { version = "0.76", features = ["all-arch"] }
lazy_static = "1.4"

[badges]
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler-cranelift/src/address_map.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file contains code from external sources.
// Attributions: https://github.com/wasmerio/wasmer/blob/master/ATTRIBUTIONS.md

use cranelift_codegen::machinst::buffer::MachSrcLoc;
use cranelift_codegen::MachSrcLoc;
use cranelift_codegen::{isa, Context};
use wasmer_compiler::{wasmparser::Range, FunctionAddressMap, InstructionAddressMap, SourceLoc};

Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-llvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ wasmer-vm = { path = "../vm", version = "2.0.0" }
wasmer-types = { path = "../types", version = "2.0.0" }
target-lexicon = { version = "0.12", default-features = false }
smallvec = "1.6"
object = { version = "0.25", default-features = false, features = ["read"] }
object = { version = "0.26", default-features = false, features = ["read"] }
libc = { version = "^0.2", default-features = false }
byteorder = "1"
itertools = "0.10"
Expand All @@ -35,7 +35,7 @@ cc = "1.0"
lazy_static = "1.4"
regex = "1.3"
semver = "1.0"
rustc_version = "0.2"
rustc_version = "0.4"

[features]
test = []
2 changes: 1 addition & 1 deletion lib/object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ wasmer-compiler = { path = "../compiler", version = "2.0.0", default-features =
"std",
"translator"
] }
object = { version = "0.25", default-features = false, features = ["write"] }
object = { version = "0.26", default-features = false, features = ["write"] }
thiserror = "1.0"
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.51
1.53
2 changes: 1 addition & 1 deletion tests/lib/wast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2018"
anyhow = "1.0"
wasmer = { path = "../../../lib/api", version = "2.0.0", default-features = false, features = ["experimental-reference-types-extern-ref"] }
wasmer-wasi = { path = "../../../lib/wasi", version = "2.0.0" }
wast = "35.0"
wast = "37.0"
serde = "1"
tempfile = "3"
thiserror = "1.0"
Expand Down
Loading

0 comments on commit 005d129

Please sign in to comment.