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-10-27 05:32:34 -05:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz"
|
|
|
|
path = "src/fuzz_main.rs"
|
|
|
|
|
2024-05-09 16:41:59 -05:00
|
|
|
[dependencies]
|
2024-10-25 08:07:39 -05:00
|
|
|
hashbrown = { version = "0.15.0", default-features = false, features = ["raw-entry", "allocator-api2"] }
|
2024-10-10 08:48:08 -05:00
|
|
|
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"
|
2024-10-18 02:52:50 -05:00
|
|
|
features = ["trace-log"]
|
2024-09-20 12:01:44 -05:00
|
|
|
|
2024-09-30 12:09:17 -05:00
|
|
|
[features]
|
2024-10-27 07:57:00 -05:00
|
|
|
default = ["std"]
|
2024-09-30 12:09:17 -05:00
|
|
|
std = []
|
2024-10-10 02:51:03 -05:00
|
|
|
no_log = ["log/max_level_off"]
|