@@ -8,15 +8,15 @@ crate-type = ["dylib"]
88
99[dependencies ]
1010# These have to be in sync with each other
11- cranelift-codegen = { git = " https://github.com/bytecodealliance/wasmtime.git" , branch = " main " , features = [" unwind" , " all-arch" ] }
12- cranelift-frontend = { git = " https://github.com/bytecodealliance/wasmtime.git" , branch = " main " }
13- cranelift-module = { git = " https://github.com/bytecodealliance/wasmtime.git" , branch = " main " }
14- cranelift-native = { git = " https://github.com/bytecodealliance/wasmtime.git" , branch = " main " }
15- cranelift-jit = { git = " https://github.com/bytecodealliance/wasmtime.git" , branch = " main " , optional = true }
16- cranelift-object = { git = " https://github.com/bytecodealliance/wasmtime.git" , branch = " main " }
11+ cranelift-codegen = { git = " https://github.com/bytecodealliance/wasmtime.git" , features = [" unwind" , " all-arch" ] }
12+ cranelift-frontend = { git = " https://github.com/bytecodealliance/wasmtime.git" }
13+ cranelift-module = { git = " https://github.com/bytecodealliance/wasmtime.git" }
14+ cranelift-native = { git = " https://github.com/bytecodealliance/wasmtime.git" }
15+ cranelift-jit = { git = " https://github.com/bytecodealliance/wasmtime.git" , optional = true }
16+ cranelift-object = { git = " https://github.com/bytecodealliance/wasmtime.git" }
1717target-lexicon = " 0.12.0"
18- gimli = { version = " 0.24 .0" , default-features = false , features = [" write" ]}
19- object = { version = " 0.25 .0" , default-features = false , features = [" std" , " read_core" , " write" , " archive" , " coff" , " elf" , " macho" , " pe" ] }
18+ gimli = { version = " 0.25 .0" , default-features = false , features = [" write" ]}
19+ object = { version = " 0.26 .0" , default-features = false , features = [" std" , " read_core" , " write" , " archive" , " coff" , " elf" , " macho" , " pe" ] }
2020
2121ar = { git = " https://github.com/bjorn3/rust-ar.git" , branch = " do_not_remove_cg_clif_ranlib" }
2222indexmap = " 1.0.2"
@@ -36,7 +36,8 @@ smallvec = "1.6.1"
3636# gimli = { path = "../" }
3737
3838[features ]
39- default = [" jit" , " inline_asm" ]
39+ # Enable features not ready to be enabled when compiling as part of rustc
40+ unstable-features = [" jit" , " inline_asm" ]
4041jit = [" cranelift-jit" , " libloading" ]
4142inline_asm = []
4243
0 commit comments