blob: ef656c5252027cd9aa72f88861b7f2b3fcbe048c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[package]
name = "zjit"
version = "0.0.1"
edition = "2024"
rust-version = "1.85.0" # Minimally supported rust version
publish = false # Don't publish to crates.io
[dependencies]
# No required dependencies to simplify build process.
# Optional For development and testing purposes.
capstone = { version = "0.13.0", optional = true }
jit = { version = "0.1.0", path = "../jit" }
[dev-dependencies]
insta = "1.43.1"
# NOTE: Development builds select a set of these via configure.ac
# For debugging, `make V=1` shows exact cargo invocation.
[features]
# Support --yjit-dump-disasm and RubyVM::YJIT.disasm using libcapstone.
disasm = ["capstone"]
runtime_checks = []
stats_allocator = []
|