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