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" }
|
2024-05-10 08:29:11 -05:00
|
|
|
hbvm = { path = "../hbvm", features = ["nightly"] }
|
2024-09-30 12:27:00 -05:00
|
|
|
log = { version = "0.4.22", features = ["release_max_level_error"] }
|
2024-10-10 01:35:17 -05:00
|
|
|
|
|
|
|
[dependencies.regalloc2]
|
|
|
|
git = "https://github.com/jakubDoka/regalloc2"
|
|
|
|
branch = "reuse-allocations"
|
|
|
|
optional = true
|
2024-09-20 12:01:44 -05:00
|
|
|
|
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"]
|