diff --git a/Cargo.lock b/Cargo.lock index 675dd9303be..e6029829574 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index b656ed7cb57..d2eb888ff6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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]