This commit is a WORK IN PROGRESS for the base implementation of the HyphaeVM. This will be squashed into a larger commit eventually when the work of implementing the HyphaeVM is finished. Of note, the ISA is mostly finished and much of the VM design is in place. Yet to be done are a few traps in mycelium, migrating pieces like the number package and the sexpr package into the VM package, and of course much testing. Signed-off-by: Ava Affine <ava@sunnypup.io>
12 lines
261 B
TOML
12 lines
261 B
TOML
[package]
|
|
name = "hyphae"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
mycelium = { path = "../mycelium" }
|
|
num = { version = "0.4.3", features = ["alloc"] }
|
|
|
|
[build-dependencies]
|
|
serde = { version = "1.0", features = ["alloc", "derive"] }
|
|
toml = "0.8.23"
|