holey-bytes/hblang/Cargo.toml

20 lines
534 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"] }
2024-09-20 01:20:48 -05:00
hbbytecode = { version = "0.1.0", path = "../hbbytecode" }
hbvm = { path = "../hbvm", features = ["nightly"] }
2024-09-30 12:27:00 -05:00
log = { version = "0.4.22", features = ["release_max_level_error"] }
2024-09-27 09:53:28 -05:00
regalloc2 = { git = "https://github.com/jakubDoka/regalloc2", branch = "reuse-allocations", features = [] }
2024-09-30 12:09:17 -05:00
[features]
default = ["std"]
std = []