holey-bytes/hblang/Cargo.toml

14 lines
294 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]
hbbytecode = { version = "0.1.0", path = "../hbbytecode" }
hbvm = { path = "../hbvm", features = ["nightly"] }
2024-09-19 10:13:51 -05:00
regalloc2 = { git = "https://github.com/jakubDoka/regalloc2" }