1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
[package]
name = "cranelift-jit"
version = "0.113.1"
authors = ["The Cranelift Project Developers"]
description = "A JIT library backed by Cranelift"
repository = "https://github.com/bytecodealliance/wasmtime"
documentation = "https://docs.rs/cranelift-jit"
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
cranelift-module = { workspace = true }
cranelift-native = { workspace = true }
cranelift-codegen = { workspace = true, features = ["std"] }
cranelift-entity = { workspace = true }
cranelift-control = { workspace = true }
anyhow = { workspace = true }
region = "3.0.2"
libc = { workspace = true }
target-lexicon = { workspace = true }
memmap2 = { version = ">= 0.2.1, <= 0.9", optional = true }
log = { workspace = true }
wasmtime-jit-icache-coherence = { workspace = true, path = "../../crates/jit-icache-coherence" }
[features]
selinux-fix = ['memmap2']
default = []
[dev-dependencies]
cranelift-frontend = { workspace = true }
cranelift-entity = { workspace = true }
|