deps: Update cranelift-* to 0.43.1
This commit is contained in:
committed by
Dan Gohman
parent
dde1c6ba58
commit
1848cc0868
15
Cargo.toml
15
Cargo.toml
@@ -11,10 +11,10 @@ edition = "2018"
|
|||||||
default-run = "wasmtime"
|
default-run = "wasmtime"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-native = "0.41.0"
|
cranelift-native = "0.43.1"
|
||||||
wasmtime-api = { path = "wasmtime-api" }
|
wasmtime-api = { path = "wasmtime-api" }
|
||||||
wasmtime-debug = { path = "wasmtime-debug" }
|
wasmtime-debug = { path = "wasmtime-debug" }
|
||||||
wasmtime-environ = { path = "wasmtime-environ" }
|
wasmtime-environ = { path = "wasmtime-environ" }
|
||||||
@@ -28,9 +28,9 @@ wasmtime-wasi-c = { path = "wasmtime-wasi-c", optional = true }
|
|||||||
wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "8ea7a983d8b1364e5f62d2adf0e74b3b8db1c9b3"}
|
wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "8ea7a983d8b1364e5f62d2adf0e74b3b8db1c9b3"}
|
||||||
docopt = "1.0.1"
|
docopt = "1.0.1"
|
||||||
serde = { "version" = "1.0.94", features = ["derive"] }
|
serde = { "version" = "1.0.94", features = ["derive"] }
|
||||||
faerie = "0.10.1"
|
faerie = "0.11.0"
|
||||||
failure = "0.1"
|
failure = "0.1"
|
||||||
target-lexicon = { version = "0.4.0", default-features = false }
|
target-lexicon = { version = "0.8.1", default-features = false }
|
||||||
pretty_env_logger = "0.3.0"
|
pretty_env_logger = "0.3.0"
|
||||||
file-per-thread-logger = "0.1.1"
|
file-per-thread-logger = "0.1.1"
|
||||||
wabt = "0.9"
|
wabt = "0.9"
|
||||||
@@ -54,3 +54,6 @@ members = [
|
|||||||
default = ["cranelift-codegen/all-arch"]
|
default = ["cranelift-codegen/all-arch"]
|
||||||
lightbeam = ["wasmtime-environ/lightbeam", "wasmtime-jit/lightbeam"]
|
lightbeam = ["wasmtime-environ/lightbeam", "wasmtime-jit/lightbeam"]
|
||||||
wasi-c = ["wasmtime-wasi-c"]
|
wasi-c = ["wasmtime-wasi-c"]
|
||||||
|
|
||||||
|
# [patch.crates-io]
|
||||||
|
# cranelift-wasm = { path = "../cranelift/cranelift-wasm" }
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ cargo-fuzz = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
wasmtime-environ = { path = "../wasmtime-environ" }
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
||||||
wasmtime-jit = { path = "../wasmtime-jit" }
|
wasmtime-jit = { path = "../wasmtime-jit" }
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-native = "0.41.0"
|
cranelift-native = "0.43.1"
|
||||||
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
|
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
|
||||||
wasmparser = { version = "0.36.0", default-features = false }
|
wasmparser = { version = "0.36.0", default-features = false }
|
||||||
binaryen = "0.5.0"
|
binaryen = "0.5.0"
|
||||||
|
|||||||
9
fuzz/fuzz_targets/instantiate.rs
Normal file → Executable file
9
fuzz/fuzz_targets/instantiate.rs
Normal file → Executable file
@@ -23,5 +23,12 @@ fuzz_target!(|data: &[u8]| {
|
|||||||
let isa = isa_builder.finish(settings::Flags::new(flag_builder));
|
let isa = isa_builder.finish(settings::Flags::new(flag_builder));
|
||||||
let mut compiler = Compiler::new(isa);
|
let mut compiler = Compiler::new(isa);
|
||||||
let mut imports_resolver = NullResolver {};
|
let mut imports_resolver = NullResolver {};
|
||||||
let _instance = instantiate(&mut compiler, data, &mut imports_resolver).unwrap();
|
let _instance = instantiate(
|
||||||
|
&mut compiler,
|
||||||
|
data,
|
||||||
|
&mut imports_resolver,
|
||||||
|
Default::default(),
|
||||||
|
true,
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
});
|
});
|
||||||
|
|||||||
9
fuzz/fuzz_targets/instantiate_translated.rs
Normal file → Executable file
9
fuzz/fuzz_targets/instantiate_translated.rs
Normal file → Executable file
@@ -21,5 +21,12 @@ fuzz_target!(|data: &[u8]| {
|
|||||||
let isa = isa_builder.finish(settings::Flags::new(flag_builder));
|
let isa = isa_builder.finish(settings::Flags::new(flag_builder));
|
||||||
let mut compiler = Compiler::new(isa);
|
let mut compiler = Compiler::new(isa);
|
||||||
let mut imports_resolver = NullResolver {};
|
let mut imports_resolver = NullResolver {};
|
||||||
let _instance = instantiate(&mut compiler, &wasm, &mut imports_resolver).unwrap();
|
let _instance = instantiate(
|
||||||
|
&mut compiler,
|
||||||
|
&wasm,
|
||||||
|
&mut imports_resolver,
|
||||||
|
Default::default(),
|
||||||
|
true,
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -12,16 +12,16 @@ name = "_wasmtime"
|
|||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = "0.41.0"
|
cranelift-codegen = "0.43.1"
|
||||||
cranelift-native = "0.41.0"
|
cranelift-native = "0.43.1"
|
||||||
cranelift-entity = "0.41.0"
|
cranelift-entity = "0.43.1"
|
||||||
cranelift-wasm = "0.41.0"
|
cranelift-wasm = "0.43.1"
|
||||||
cranelift-frontend = "0.41.0"
|
cranelift-frontend = "0.43.1"
|
||||||
wasmtime-environ = { path = "../../wasmtime-environ" }
|
wasmtime-environ = { path = "../../wasmtime-environ" }
|
||||||
wasmtime-interface-types = { path = "../../wasmtime-interface-types" }
|
wasmtime-interface-types = { path = "../../wasmtime-interface-types" }
|
||||||
wasmtime-jit = { path = "../../wasmtime-jit" }
|
wasmtime-jit = { path = "../../wasmtime-jit" }
|
||||||
wasmtime-runtime = { path = "../../wasmtime-runtime" }
|
wasmtime-runtime = { path = "../../wasmtime-runtime" }
|
||||||
target-lexicon = { version = "0.4.0", default-features = false }
|
target-lexicon = { version = "0.8.1", default-features = false }
|
||||||
failure = "0.1"
|
failure = "0.1"
|
||||||
region = "2.0.0"
|
region = "2.0.0"
|
||||||
wasmparser = "0.38.0"
|
wasmparser = "0.38.0"
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ test = false
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = "0.41.0"
|
cranelift-codegen = "0.43.1"
|
||||||
cranelift-native = "0.41.0"
|
cranelift-native = "0.43.1"
|
||||||
failure = "0.1.5"
|
failure = "0.1.5"
|
||||||
wasmtime-interface-types = { path = "../../wasmtime-interface-types" }
|
wasmtime-interface-types = { path = "../../wasmtime-interface-types" }
|
||||||
wasmtime-jit = { path = "../../wasmtime-jit" }
|
wasmtime-jit = { path = "../../wasmtime-jit" }
|
||||||
|
|||||||
@@ -12,18 +12,18 @@ name = "wasmtime_api"
|
|||||||
crate-type = ["lib", "staticlib", "cdylib"]
|
crate-type = ["lib", "staticlib", "cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-native = "0.41.0"
|
cranelift-native = "0.43.1"
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-frontend = "0.41.0"
|
cranelift-frontend = "0.43.1"
|
||||||
wasmtime-runtime = { path="../wasmtime-runtime" }
|
wasmtime-runtime = { path="../wasmtime-runtime" }
|
||||||
wasmtime-environ = { path="../wasmtime-environ" }
|
wasmtime-environ = { path="../wasmtime-environ" }
|
||||||
wasmtime-jit = { path="../wasmtime-jit" }
|
wasmtime-jit = { path="../wasmtime-jit" }
|
||||||
wasmparser = "0.36"
|
wasmparser = "0.36"
|
||||||
failure = { version = "0.1.3", default-features = false }
|
failure = { version = "0.1.3", default-features = false }
|
||||||
failure_derive = { version = "0.1.3", default-features = false }
|
failure_derive = { version = "0.1.3", default-features = false }
|
||||||
target-lexicon = { version = "0.4.0", default-features = false }
|
target-lexicon = { version = "0.8.1", default-features = false }
|
||||||
region = "2.0.0"
|
region = "2.0.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -14,12 +14,12 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
gimli = "0.19.0"
|
gimli = "0.19.0"
|
||||||
wasmparser = { version = "0.36.0" }
|
wasmparser = { version = "0.36.0" }
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
faerie = "0.10.1"
|
faerie = "0.11.0"
|
||||||
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
||||||
target-lexicon = { version = "0.4.0", default-features = false }
|
target-lexicon = { version = "0.8.1", default-features = false }
|
||||||
failure = { version = "0.1.3", default-features = false }
|
failure = { version = "0.1.3", default-features = false }
|
||||||
failure_derive = { version = "0.1.3", default-features = false }
|
failure_derive = { version = "0.1.3", default-features = false }
|
||||||
|
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
lightbeam = { path = "../lightbeam", optional = true }
|
lightbeam = { path = "../lightbeam", optional = true }
|
||||||
failure = { version = "0.1.3", default-features = false }
|
failure = { version = "0.1.3", default-features = false }
|
||||||
failure_derive = { version = "0.1.3", default-features = false }
|
failure_derive = { version = "0.1.3", default-features = false }
|
||||||
@@ -41,10 +41,10 @@ errno = "0.2.4"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
target-lexicon = { version = "0.4.0", default-features = false }
|
target-lexicon = { version = "0.8.1", default-features = false }
|
||||||
pretty_env_logger = "0.3.0"
|
pretty_env_logger = "0.3.0"
|
||||||
rand = { version = "0.7.0", features = ["small_rng"] }
|
rand = { version = "0.7.0", features = ["small_rng"] }
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde", "all-arch"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde", "all-arch"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = "0.41.0"
|
cranelift-codegen = "0.43.1"
|
||||||
failure = "0.1"
|
failure = "0.1"
|
||||||
walrus = "0.11.0"
|
walrus = "0.11.0"
|
||||||
wasmparser = "0.36.0"
|
wasmparser = "0.36.0"
|
||||||
|
|||||||
@@ -11,17 +11,17 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-frontend = "0.41.0"
|
cranelift-frontend = "0.43.1"
|
||||||
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
||||||
wasmtime-runtime = { path = "../wasmtime-runtime", default-features = false }
|
wasmtime-runtime = { path = "../wasmtime-runtime", default-features = false }
|
||||||
wasmtime-debug = { path = "../wasmtime-debug", default-features = false }
|
wasmtime-debug = { path = "../wasmtime-debug", default-features = false }
|
||||||
region = "2.0.0"
|
region = "2.0.0"
|
||||||
failure = { version = "0.1.3", default-features = false }
|
failure = { version = "0.1.3", default-features = false }
|
||||||
failure_derive = { version = "0.1.3", default-features = false }
|
failure_derive = { version = "0.1.3", default-features = false }
|
||||||
target-lexicon = { version = "0.4.0", default-features = false }
|
target-lexicon = { version = "0.8.1", default-features = false }
|
||||||
hashbrown = { version = "0.6.0", optional = true }
|
hashbrown = { version = "0.6.0", optional = true }
|
||||||
wasmparser = "0.36.0"
|
wasmparser = "0.36.0"
|
||||||
|
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
wasmtime-environ = { path = "../wasmtime-environ" }
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
||||||
faerie = "0.10.1"
|
faerie = "0.11.0"
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
||||||
region = "2.0.0"
|
region = "2.0.0"
|
||||||
lazy_static = "1.2.0"
|
lazy_static = "1.2.0"
|
||||||
|
|||||||
@@ -1260,6 +1260,7 @@ fn initialize_globals(instance: &mut Instance) {
|
|||||||
GlobalInit::I64Const(x) => *unsafe { (*to).as_i64_mut() } = x,
|
GlobalInit::I64Const(x) => *unsafe { (*to).as_i64_mut() } = x,
|
||||||
GlobalInit::F32Const(x) => *unsafe { (*to).as_f32_bits_mut() } = x,
|
GlobalInit::F32Const(x) => *unsafe { (*to).as_f32_bits_mut() } = x,
|
||||||
GlobalInit::F64Const(x) => *unsafe { (*to).as_f64_bits_mut() } = x,
|
GlobalInit::F64Const(x) => *unsafe { (*to).as_f64_bits_mut() } = x,
|
||||||
|
GlobalInit::V128Const(x) => *unsafe { (*to).as_u128_bits_mut() } = x.0,
|
||||||
GlobalInit::GetGlobal(x) => {
|
GlobalInit::GetGlobal(x) => {
|
||||||
let from = if let Some(def_x) = module.defined_global_index(x) {
|
let from = if let Some(def_x) = module.defined_global_index(x) {
|
||||||
instance.global_mut(def_x)
|
instance.global_mut(def_x)
|
||||||
|
|||||||
@@ -382,6 +382,30 @@ impl VMGlobalDefinition {
|
|||||||
pub unsafe fn as_f64_bits_mut(&mut self) -> &mut u64 {
|
pub unsafe fn as_f64_bits_mut(&mut self) -> &mut u64 {
|
||||||
&mut *(self.storage.as_mut().as_mut_ptr() as *mut u64)
|
&mut *(self.storage.as_mut().as_mut_ptr() as *mut u64)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Return a reference to the value as an u128.
|
||||||
|
#[allow(clippy::cast_ptr_alignment)]
|
||||||
|
pub unsafe fn as_u128(&self) -> &u128 {
|
||||||
|
&*(self.storage.as_ref().as_ptr() as *const u128)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return a mutable reference to the value as an u128.
|
||||||
|
#[allow(clippy::cast_ptr_alignment)]
|
||||||
|
pub unsafe fn as_u128_mut(&mut self) -> &mut u128 {
|
||||||
|
&mut *(self.storage.as_mut().as_mut_ptr() as *mut u128)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return a reference to the value as u128 bits.
|
||||||
|
#[allow(clippy::cast_ptr_alignment)]
|
||||||
|
pub unsafe fn as_u128_bits(&self) -> &[u8; 16] {
|
||||||
|
&*(self.storage.as_ref().as_ptr() as *const [u8; 16])
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return a mutable reference to the value as u128 bits.
|
||||||
|
#[allow(clippy::cast_ptr_alignment)]
|
||||||
|
pub unsafe fn as_u128_bits_mut(&mut self) -> &mut [u8; 16] {
|
||||||
|
&mut *(self.storage.as_mut().as_mut_ptr() as *mut [u8; 16])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// An index into the shared signature registry, usable for checking signatures
|
/// An index into the shared signature registry, usable for checking signatures
|
||||||
|
|||||||
@@ -12,10 +12,10 @@ readme = "README.md"
|
|||||||
wasmtime-runtime = { path = "../wasmtime-runtime" }
|
wasmtime-runtime = { path = "../wasmtime-runtime" }
|
||||||
wasmtime-environ = { path = "../wasmtime-environ" }
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
||||||
wasmtime-jit = { path = "../wasmtime-jit" }
|
wasmtime-jit = { path = "../wasmtime-jit" }
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
target-lexicon = "0.4.0"
|
target-lexicon = "0.8.1"
|
||||||
log = { version = "0.4.8", default-features = false }
|
log = { version = "0.4.8", default-features = false }
|
||||||
libc = "0.2.60"
|
libc = "0.2.60"
|
||||||
|
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ wasmtime-runtime = { path = "../wasmtime-runtime" }
|
|||||||
wasmtime-environ = { path = "../wasmtime-environ" }
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
||||||
wasmtime-jit = { path = "../wasmtime-jit" }
|
wasmtime-jit = { path = "../wasmtime-jit" }
|
||||||
wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "8ea7a983d8b1364e5f62d2adf0e74b3b8db1c9b3"}
|
wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "8ea7a983d8b1364e5f62d2adf0e74b3b8db1c9b3"}
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
target-lexicon = "0.4.0"
|
target-lexicon = "0.8.1"
|
||||||
log = { version = "0.4.8", default-features = false }
|
log = { version = "0.4.8", default-features = false }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
|
|||||||
@@ -11,14 +11,14 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.41.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.43.1", features = ["enable-serde"] }
|
||||||
wasmtime-jit = { path = "../wasmtime-jit" }
|
wasmtime-jit = { path = "../wasmtime-jit" }
|
||||||
wasmtime-runtime = { path = "../wasmtime-runtime" }
|
wasmtime-runtime = { path = "../wasmtime-runtime" }
|
||||||
wasmtime-environ = { path = "../wasmtime-environ" }
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
||||||
wabt = "0.9.1"
|
wabt = "0.9.1"
|
||||||
target-lexicon = "0.4.0"
|
target-lexicon = "0.8.1"
|
||||||
failure = { version = "0.1.3", default-features = false }
|
failure = { version = "0.1.3", default-features = false }
|
||||||
failure_derive = { version = "0.1.3", default-features = false }
|
failure_derive = { version = "0.1.3", default-features = false }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user