mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 12:14:51 +00:00
So we don't expose builders to network flakiness which cannot be worked around using cargo's --offline flag.
24 lines
694 B
TOML
24 lines
694 B
TOML
[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 = []
|