holey-bytes/hblang/Cargo.toml

17 lines
351 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-09-20 01:20:48 -05:00
hbbytecode = { version = "0.1.0", path = "../hbbytecode" }
hbvm = { path = "../hbvm", features = ["nightly"] }
regalloc2 = { git = "https://github.com/jakubDoka/regalloc2", features = [] }
[dev-dependencies]
env_logger = "0.11.5"