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
|
2024-08-11 08:19:03 -05:00
|
|
|
cranelift-codegen = { version = "0.111.0", default-features = false, features = ["std", "unwind", "all-arch"] }
|
|
|
|
cranelift-frontend = { version = "0.111.0" }
|
|
|
|
cranelift-module = { version = "0.111.0" }
|
|
|
|
cranelift-native = { version = "0.111.0" }
|
|
|
|
cranelift-jit = { version = "0.111.0", optional = true }
|
|
|
|
cranelift-object = { version = "0.111.0" }
|
2021-04-30 07:49:58 -05:00
|
|
|
target-lexicon = "0.12.0"
|
2024-08-11 08:19:03 -05:00
|
|
|
gimli = { version = "0.29", default-features = false, features = ["write"] }
|
2024-06-05 09:00:13 -05:00
|
|
|
object = { version = "0.36", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
|
2019-03-08 10:55:51 -06:00
|
|
|
|
2023-07-22 08:32:34 -05:00
|
|
|
indexmap = "2.0.0"
|
2024-01-10 09:12:01 -06:00
|
|
|
libloading = { version = "0.8.0", optional = true }
|
2022-06-26 17:48:55 -05:00
|
|
|
smallvec = "1.8.1"
|
2018-08-13 14:39:18 -05:00
|
|
|
|
2021-12-20 11:56:35 -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
|
2023-10-29 15:30:50 -05:00
|
|
|
unstable-features = ["jit", "inline_asm_sym"]
|
2020-12-27 03:30:38 -06:00
|
|
|
jit = ["cranelift-jit", "libloading"]
|
2023-10-29 15:30:50 -05:00
|
|
|
inline_asm_sym = []
|
2019-05-11 05:23:40 -05:00
|
|
|
|
2021-03-29 03:45:09 -05:00
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
rustc_private = true
|