Update Cranelift

This commit is contained in:
bjorn3 2020-06-30 18:48:26 +02:00
parent c1b1a5a9dc
commit 5262fec06d
2 changed files with 15 additions and 15 deletions

20
Cargo.lock generated
View File

@ -45,7 +45,7 @@ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cranelift-bforest"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"cranelift-entity",
]
@ -53,7 +53,7 @@ dependencies = [
[[package]]
name = "cranelift-codegen"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"byteorder",
"cranelift-bforest",
@ -71,7 +71,7 @@ dependencies = [
[[package]]
name = "cranelift-codegen-meta"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"cranelift-codegen-shared",
"cranelift-entity",
@ -80,17 +80,17 @@ dependencies = [
[[package]]
name = "cranelift-codegen-shared"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
[[package]]
name = "cranelift-entity"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
[[package]]
name = "cranelift-frontend"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"cranelift-codegen",
"log",
@ -101,7 +101,7 @@ dependencies = [
[[package]]
name = "cranelift-module"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"anyhow",
"cranelift-codegen",
@ -113,7 +113,7 @@ dependencies = [
[[package]]
name = "cranelift-native"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"cranelift-codegen",
"raw-cpuid",
@ -123,7 +123,7 @@ dependencies = [
[[package]]
name = "cranelift-object"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"anyhow",
"cranelift-codegen",
@ -135,7 +135,7 @@ dependencies = [
[[package]]
name = "cranelift-simplejit"
version = "0.65.0"
source = "git+https://github.com/bytecodealliance/wasmtime/#c91a9313b532067bb53eea44a182bb0c5bd2ebf4"
source = "git+https://github.com/bytecodealliance/wasmtime/?branch=main#4d57ae99e391251ef9e369ca8bed59d5c33a3ce0"
dependencies = [
"cranelift-codegen",
"cranelift-module",

View File

@ -9,10 +9,10 @@ crate-type = ["dylib"]
[dependencies]
# These have to be in sync with each other
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime/", features = ["unwind"] }
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime/" }
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime/" }
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime/" }
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main", features = ["unwind"] }
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
target-lexicon = "0.10.0"
ar = "0.8.0"
@ -42,7 +42,7 @@ features = ["write"] # We don't need read support
#gimli = { path = "../" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
cranelift-simplejit = { git = "https://github.com/bytecodealliance/wasmtime/" }
cranelift-simplejit = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
libloading = "0.6.0"
[profile.dev]