2020-10-26 08:53:27 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_cranelift"
|
|
|
|
version = "0.1.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-10-26 08:53:27 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# These have to be in sync with each other
|
2024-09-23 11:20:46 +00: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 12:49:58 +00:00
|
|
|
target-lexicon = "0.12.0"
|
2024-09-23 11:20:46 +00:00
|
|
|
gimli = { version = "0.29", default-features = false, features = ["write"] }
|
2024-06-30 11:28:14 +00:00
|
|
|
object = { version = "0.36", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
|
2020-10-26 08:53:27 +00:00
|
|
|
|
2023-07-22 13:32:34 +00:00
|
|
|
indexmap = "2.0.0"
|
2024-01-10 15:12:01 +00:00
|
|
|
libloading = { version = "0.8.0", optional = true }
|
2022-06-26 22:48:55 +00:00
|
|
|
smallvec = "1.8.1"
|
2020-10-26 08:53:27 +00:00
|
|
|
|
2021-12-20 17:56:35 +00:00
|
|
|
[patch.crates-io]
|
2020-10-26 08:53:27 +00:00
|
|
|
# Uncomment to use local checkout of cranelift
|
|
|
|
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
|
|
|
|
#cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
|
|
|
|
#cranelift-module = { path = "../wasmtime/cranelift/module" }
|
2021-05-27 11:08:14 +00:00
|
|
|
#cranelift-native = { path = "../wasmtime/cranelift/native" }
|
2020-12-27 09:30:38 +00:00
|
|
|
#cranelift-jit = { path = "../wasmtime/cranelift/jit" }
|
2020-10-26 08:53:27 +00:00
|
|
|
#cranelift-object = { path = "../wasmtime/cranelift/object" }
|
|
|
|
|
|
|
|
#gimli = { path = "../" }
|
|
|
|
|
|
|
|
[features]
|
2021-08-06 14:26:56 +00:00
|
|
|
# Enable features not ready to be enabled when compiling as part of rustc
|
2023-10-29 20:30:50 +00:00
|
|
|
unstable-features = ["jit", "inline_asm_sym"]
|
2020-12-27 09:30:38 +00:00
|
|
|
jit = ["cranelift-jit", "libloading"]
|
2023-10-29 20:30:50 +00:00
|
|
|
inline_asm_sym = []
|
2020-10-26 08:53:27 +00:00
|
|
|
|
2021-03-29 08:45:09 +00:00
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
rustc_private = true
|