holey-bytes/lang/Cargo.toml

27 lines
573 B
TOML
Raw Normal View History

2024-05-09 16:41:59 -05:00
[package]
name = "hblang"
version = "0.1.0"
edition = "2021"
2024-05-12 17:02:32 -05:00
[[bin]]
name = "hbc"
path = "src/main.rs"
2024-05-09 16:41:59 -05:00
[dependencies]
2024-10-01 14:33:30 -05:00
hashbrown = { version = "0.15.0", default-features = false, features = ["raw-entry"] }
hbbytecode = { workspace = true, features = ["disasm"] }
hbvm = { workspace = true, features = ["nightly"] }
2024-10-12 06:07:49 -05:00
log = "0.4.22"
2024-10-10 01:35:17 -05:00
[dependencies.regalloc2]
git = "https://github.com/jakubDoka/regalloc2"
branch = "reuse-allocations"
optional = true
2024-10-18 02:52:50 -05:00
features = ["trace-log"]
2024-09-30 12:09:17 -05:00
[features]
2024-10-10 01:35:17 -05:00
default = ["std", "opts"]
2024-09-30 12:09:17 -05:00
std = []
2024-10-10 01:35:17 -05:00
opts = ["regalloc2"]
2024-10-10 02:51:03 -05:00
no_log = ["log/max_level_off"]