[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen"
version = "0.104.3"
description = "Low-level code generator library"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-codegen"
repository = "https://github.com/bytecodealliance/wasmtime"
categories = ["no-std"]
readme = "README.md"
keywords = ["compile", "compiler", "jit"]
build = "build.rs"
edition.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true, optional = true }
bumpalo = "3"
capstone = { workspace = true, optional = true }
cranelift-codegen-shared = { path = "./shared", version = "0.104.3" }
cranelift-entity = { workspace = true }
cranelift-bforest = { workspace = true }
cranelift-control = { workspace = true }
hashbrown = { workspace = true, features = ["raw"] }
target-lexicon = { workspace = true }
log = { workspace = true }
serde = { version = "1.0.188", optional = true }
serde_derive = { version = "1.0.188", optional = true }
bincode = { version = "1.2.1", optional = true }
gimli = { workspace = true, features = ["write"], optional = true }
smallvec = { workspace = true }
regalloc2 = { workspace = true, features = ["checker"] }
souper-ir = { version = "2.1.0", optional = true }
sha2 = { version = "0.10.2", optional = true }
[dev-dependencies]
criterion = { version = "0.5.0", features = ["html_reports"] }
similar = "2.1.0"
[build-dependencies]
cranelift-codegen-meta = { path = "meta", version = "0.104.3" }
cranelift-isle = { path = "../isle/isle", version = "=0.104.3" }
[features]
default = ["std", "unwind", "host-arch", "timing"]
std = []
core = []
disas = ["anyhow", "capstone"]
trace-log = []
unwind = ["gimli"]
x86 = []
arm64 = []
s390x = []
riscv64 = []
host-arch = []
all-arch = [
"x86",
"arm64",
"s390x",
"riscv64"
]
enable-serde = [
"serde",
"serde_derive",
"cranelift-entity/enable-serde",
"regalloc2/enable-serde",
"smallvec/serde"
]
incremental-cache = [
"enable-serde",
"bincode",
"sha2"
]
souper-harvest = ["souper-ir", "souper-ir/stringify"]
isle-errors = ["cranelift-isle/fancy-errors"]
isle-in-source-tree = []
timing = []
[[bench]]
name = "x64-evex-encoding"
harness = false