From a1a88c6eb8bd63f16fb7b415169e3cd125a4154e Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Sat, 21 Sep 2019 13:59:08 -0500 Subject: [PATCH] Use the default features for wasmparser --- lib/clif-backend/Cargo.toml | 2 +- lib/llvm-backend/Cargo.toml | 2 +- lib/runtime-abi/Cargo.toml | 2 +- lib/runtime-core/Cargo.toml | 2 +- lib/singlepass-backend/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/clif-backend/Cargo.toml b/lib/clif-backend/Cargo.toml index 901223de9..3aa7f735e 100644 --- a/lib/clif-backend/Cargo.toml +++ b/lib/clif-backend/Cargo.toml @@ -16,7 +16,7 @@ cranelift-entity = { git = "https://github.com/wasmerio/cranelift", branch = "fe cranelift-frontend = { git = "https://github.com/wasmerio/cranelift", branch = "feature/merge-cranelift-0-43-1" } cranelift-wasm = { git = "https://github.com/wasmerio/cranelift", branch = "feature/merge-cranelift-0-43-1" } target-lexicon = "0.8.1" -wasmparser = { version = "0.37.0", default-features = false } +wasmparser = "0.37.0" byteorder = "1.3.2" nix = "0.15.0" libc = "0.2.60" diff --git a/lib/llvm-backend/Cargo.toml b/lib/llvm-backend/Cargo.toml index bd97176f9..daf933326 100644 --- a/lib/llvm-backend/Cargo.toml +++ b/lib/llvm-backend/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" [dependencies] wasmer-runtime-core = { path = "../runtime-core", version = "0.7.0" } -wasmparser = { version = "0.37.0", default-features = false } +wasmparser = "0.37.0" smallvec = "0.6" goblin = "0.0.24" libc = "0.2.60" diff --git a/lib/runtime-abi/Cargo.toml b/lib/runtime-abi/Cargo.toml index d0cda4124..9779adbd0 100644 --- a/lib/runtime-abi/Cargo.toml +++ b/lib/runtime-abi/Cargo.toml @@ -12,7 +12,7 @@ libc = "0.2.60" wasmer-runtime-core = { path = "../runtime-core" } failure = "0.1" tar = "0.4" -wasmparser = { version = "0.37.0", default-features = false } +wasmparser = "0.37.0" zstd = "0.4" # [target.'cfg(unix)'.dependencies.zbox] diff --git a/lib/runtime-core/Cargo.toml b/lib/runtime-core/Cargo.toml index 02d5b62c3..8ebea6a77 100644 --- a/lib/runtime-core/Cargo.toml +++ b/lib/runtime-core/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] nix = "0.15" page_size = "0.4" -wasmparser = { version = "0.37.0", default-features = false } +wasmparser = "0.37.0" parking_lot = "0.9" lazy_static = "1.4" errno = "0.2" diff --git a/lib/singlepass-backend/Cargo.toml b/lib/singlepass-backend/Cargo.toml index 573018e14..a78e037e1 100644 --- a/lib/singlepass-backend/Cargo.toml +++ b/lib/singlepass-backend/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" [dependencies] wasmer-runtime-core = { path = "../runtime-core", version = "0.7.0" } -wasmparser = { version = "0.37.0", default-features = false } +wasmparser = "0.37.0" dynasm = "0.3.2" dynasmrt = "0.3.1" lazy_static = "1.4"