Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Oct 30, 2020
1 parent 1a4cd32 commit 2387ec0
Show file tree
Hide file tree
Showing 14 changed files with 278 additions and 211 deletions.
451 changes: 259 additions & 192 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ wasmer-wasi = { version = "1.0.0-alpha4", path = "lib/wasi", optional = true }
wasmer-wast = { version = "1.0.0-alpha4", path = "tests/lib/wast", optional = true }
wasmer-cache = { version = "1.0.0-alpha4", path = "lib/cache", optional = true }
wasmer-types = { version = "1.0.0-alpha4", path = "lib/wasmer-types" }
cfg-if = "0.1"
cfg-if = "1.0"

[workspace]
members = [
Expand Down Expand Up @@ -57,7 +57,7 @@ test-generator = { path = "tests/lib/test-generator" }
build-deps = "0.1.4"
anyhow = "1.0"
glob = "0.3"
rustc_version = "0.2"
rustc_version = "0.3"

[dev-dependencies]
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ winapi = "0.3"

[dev-dependencies]
# for the binary wasmer.rs
libc = { version = "^0.2.69", default-features = false }
libc = { version = "^0.2", default-features = false }
wat = "1.0"
tempfile = "3.1"
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ wasmer-wasi = { version = "1.0.0-alpha4", path = "../wasi", optional = true }
wasmer-types = { version = "1.0.0-alpha4", path = "../wasmer-types" }
cfg-if = "0.1"
lazy_static = "1"
libc = { version = "^0.2.69", default-features = false }
libc = { version = "^0.2", default-features = false }
libffi = { version = "0.9" }
serde = { version = "1", optional = true, features = ["derive"] }
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ structopt = { version = "0.3", features = ["suggestions"] }
distance = "0.4"
# For the inspect subcommand
bytesize = "1.0"
cfg-if = "0.1"
cfg-if = "1.0"
# For debug feature
fern = { version = "0.6", features = ["colored"], optional = true }
log = { version = "0.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha4", default-fea
cranelift-codegen = { version = "0.67", default-features = false, features = ["x86", "arm64"] }
cranelift-frontend = { version = "0.67", default-features = false }
tracing = "0.1"
hashbrown = { version = "0.8", optional = true }
rayon = "1.3"
hashbrown = { version = "0.9", optional = true }
rayon = "1.5"
serde = { version = "1.0", features = ["derive"] }
more-asserts = "0.2"
gimli = { version = "0.21", optional = true }
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 @@ -18,10 +18,10 @@ wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha4" }
target-lexicon = { version = "0.11", default-features = false }
smallvec = "1"
goblin = "0.2"
libc = { version = "^0.2.69", default-features = false }
libc = { version = "^0.2", default-features = false }
byteorder = "1"
itertools = "0.9"
rayon = "1.3"
rayon = "1.5"

[dependencies.inkwell]
version = "=0.1.0-llvm10sample"
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-singlepass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ edition = "2018"
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha4", features = ["translator"], default-features = false }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha4" }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha4", default-features = false, features = ["std"] }
rayon = "1.3"
hashbrown = { version = "0.8", optional = true }
rayon = "1.5"
hashbrown = { version = "0.9", optional = true }
serde = { version = "1.0", features = ["derive"] }
more-asserts = "0.2"
dynasm = "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 = "../wasmer-types", version = "1.0.0-alpha4", default-fea
wasmparser = { version = "0.65", optional = true, default-features = false }
target-lexicon = { version = "0.11", default-features = false }
enumset = "1.0"
hashbrown = { version = "0.8", optional = true }
hashbrown = { version = "0.9", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0"
serde_bytes = { version = "0.11", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/emscripten/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ edition = "2018"
[dependencies]
byteorder = "1.3"
lazy_static = "1.4"
libc = "^0.2.69"
libc = "^0.2"
log = "0.4"
time = "0.1"
wasmer = { path = "../api", version = "1.0.0-alpha4", default-features = false }

[target.'cfg(windows)'.dependencies]
getrandom = "0.1"
getrandom = "0.2"
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 = "1.0.0-alpha4", default-feat
"std",
"translator"
] }
object = { version = "0.19", default-features = false, features = ["write"] }
object = { version = "0.21", default-features = false, features = ["write"] }
thiserror = "1.0"
2 changes: 1 addition & 1 deletion lib/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha4" }
region = "2.2"
libc = { version = "^0.2.69", default-features = false }
libc = { version = "^0.2", default-features = false }
memoffset = "0.5"
indexmap = { version = "1.4", features = ["serde-1"] }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/wasi-experimental-io-devices/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ maintenance = { status = "experimental" }
[dependencies]
wasmer-wasi = { version = "1.0.0-alpha4", path = "../wasi" }
tracing = "0.1"
minifb = "0.16"
minifb = "0.19"
ref_thread_local = "0.0"
serde = "1"
typetag = "0.1"
4 changes: 2 additions & 2 deletions lib/wasi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ bincode = "1"
byteorder = "1.3"
thiserror = "1"
generational-arena = { version = "0.2", features = ["serde"] }
libc = { version = "^0.2.69", default-features = false }
libc = { version = "^0.2", default-features = false }
tracing = { version = "0.1", features = ["log"] }
getrandom = "0.1"
getrandom = "0.2"
time = "0.1"
typetag = "0.1"
serde = { version = "1.0", features = ["derive"] }
Expand Down

0 comments on commit 2387ec0

Please sign in to comment.