rust/Cargo.toml

44 lines
1.5 KiB
TOML
Raw Normal View History

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]
crate-type = ["dylib"]
2018-06-17 11:05:11 -05:00
[dependencies]
# These have to be in sync with each other
2024-10-10 12:12:17 -05:00
cranelift-codegen = { version = "0.113.0", default-features = false, features = ["std", "unwind", "all-native-arch"] }
cranelift-frontend = { version = "0.113.0" }
cranelift-module = { version = "0.113.0" }
cranelift-native = { version = "0.113.0" }
cranelift-jit = { version = "0.113.0", optional = true }
cranelift-object = { version = "0.113.0" }
target-lexicon = "0.12.0"
2024-10-10 12:12:17 -05:00
gimli = { version = "0.31", 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"] }
indexmap = "2.0.0"
libloading = { version = "0.8.0", optional = true }
smallvec = "1.8.1"
[patch.crates-io]
# 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" }
#cranelift-native = { path = "../wasmtime/cranelift/native" }
#cranelift-jit = { path = "../wasmtime/cranelift/jit" }
2020-03-08 06:25:11 -05:00
#cranelift-object = { path = "../wasmtime/cranelift/object" }
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]
# Enable features not ready to be enabled when compiling as part of rustc
unstable-features = ["jit", "inline_asm_sym"]
jit = ["cranelift-jit", "libloading"]
inline_asm_sym = []
[package.metadata.rust-analyzer]
rustc_private = true