forked from AbleOS/holey-bytes
ee67ebb017
also splitting hbc binary into a separate crate to avoid dependency cycle, the backand is thus far capable of compiling the simplest program that returns an custom status code Signed-off-by: Jakub Doka <jakub.doka2@gmail.com>
20 lines
416 B
TOML
20 lines
416 B
TOML
[package]
|
|
name = "hblang"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "fuzz"
|
|
path = "src/fuzz_main.rs"
|
|
|
|
[dependencies]
|
|
hbbytecode = { workspace = true, features = ["disasm"] }
|
|
hbvm = { workspace = true, features = ["nightly", "alloc"] }
|
|
hashbrown = { version = "0.15.0", default-features = false, features = ["raw-entry"] }
|
|
log = "0.4.22"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
no_log = ["log/max_level_off"]
|