Mycelium/hyphae/Cargo.toml
Ava Affine 3af5997a15
All checks were successful
per-push tests / build (push) Successful in 1m38s
per-push tests / test-utility (push) Successful in 42s
per-push tests / test-frontend (push) Successful in 42s
per-push tests / test-backend (push) Successful in 49s
per-push tests / timed-decomposer-parse (push) Successful in 47s
Hyphae: add assembler and disassembler
This commit adds hyphae binaries for an assembler and a disassembler
As well as some fixes for observed misbehavior during manual
verification.

The new binaries are hphc for compiling assmbly files and hphdump for
inspecting compiled hyphae binary.

Signed-off-by: Ava Affine <ava@sunnypup.io>
2025-12-15 18:37:47 +00:00

31 lines
582 B
TOML

[package]
name = "hyphae"
version = "0.1.0"
edition = "2024"
[lib]
name = "hyphae"
crate-type = ["lib"]
path = "src/lib.rs"
[[bin]]
name = "hphc"
path = "src/bin/hphc.rs"
required-features = ["cli"]
[[bin]]
name = "hphdump"
path = "src/bin/hphdump.rs"
required-features = ["cli"]
[features]
cli = ["clap"]
[dependencies]
organelle = { path = "../organelle" }
num = { version = "0.4.3", features = ["alloc"] }
clap = { version = "4.5.53", features = ["derive"], optional = true }
[build-dependencies]
serde = { version = "1.0", features = ["alloc", "derive"] }
toml = "0.8.23"