2018-06-17 11:05:11 -05:00
|
|
|
[package]
|
2018-07-14 04:59:42 -05:00
|
|
|
name = "rustc_codegen_cranelift"
|
2018-06-17 11:05:11 -05:00
|
|
|
version = "0.1.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2018-06-17 11:05:11 -05:00
|
|
|
|
|
|
|
[lib]
|
2019-08-13 12:36:07 -05:00
|
|
|
crate-type = ["dylib"]
|
2018-06-17 11:05:11 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2019-03-08 10:55:51 -06:00
|
|
|
# These have to be in sync with each other
|
2022-09-25 10:49:44 -05:00
|
|
|
cranelift-codegen = { version = "0.88.0", features = ["unwind", "all-arch"] }
|
|
|
|
cranelift-frontend = "0.88.0"
|
|
|
|
cranelift-module = "0.88.0"
|
|
|
|
cranelift-native = "0.88.0"
|
|
|
|
cranelift-jit = { version = "0.88.0", optional = true }
|
|
|
|
cranelift-object = "0.88.0"
|
2021-04-30 07:49:58 -05:00
|
|
|
target-lexicon = "0.12.0"
|
2022-01-05 05:22:23 -06:00
|
|
|
gimli = { version = "0.26.0", default-features = false, features = ["write"]}
|
2022-08-22 13:53:10 -05:00
|
|
|
object = { version = "0.29.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
|
2019-03-08 10:55:51 -06:00
|
|
|
|
2020-07-11 14:19:10 -05:00
|
|
|
ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "do_not_remove_cg_clif_ranlib" }
|
2022-07-14 12:13:52 -05:00
|
|
|
indexmap = "1.9.1"
|
2022-09-01 10:36:12 -05:00
|
|
|
libloading = { version = "0.7.3", optional = true }
|
2022-03-15 11:42:51 -05:00
|
|
|
once_cell = "1.10.0"
|
2022-06-26 17:48:55 -05:00
|
|
|
smallvec = "1.8.1"
|
2018-08-13 14:39:18 -05:00
|
|
|
|
2021-12-17 03:58:04 -06:00
|
|
|
[patch.crates-io]
|
2019-07-26 05:02:51 -05:00
|
|
|
# Uncomment to use local checkout of cranelift
|
2020-03-08 06:25:11 -05:00
|
|
|
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
|
|
|
|
#cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
|
|
|
|
#cranelift-module = { path = "../wasmtime/cranelift/module" }
|
2021-05-27 06:08:14 -05:00
|
|
|
#cranelift-native = { path = "../wasmtime/cranelift/native" }
|
2020-12-27 03:30:38 -06:00
|
|
|
#cranelift-jit = { path = "../wasmtime/cranelift/jit" }
|
2020-03-08 06:25:11 -05:00
|
|
|
#cranelift-object = { path = "../wasmtime/cranelift/object" }
|
2018-09-30 03:35:44 -05:00
|
|
|
|
2019-01-19 05:00:51 -06:00
|
|
|
#gimli = { path = "../" }
|
2019-01-17 11:07:27 -06:00
|
|
|
|
2020-07-09 07:23:00 -05:00
|
|
|
[features]
|
2021-08-06 09:26:56 -05:00
|
|
|
# Enable features not ready to be enabled when compiling as part of rustc
|
|
|
|
unstable-features = ["jit", "inline_asm"]
|
2022-03-15 11:42:51 -05:00
|
|
|
jit = ["cranelift-jit", "libloading"]
|
2020-08-15 07:19:23 -05:00
|
|
|
inline_asm = []
|
2019-05-11 05:23:40 -05:00
|
|
|
|
2021-03-29 03:45:09 -05:00
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
rustc_private = true
|