WIP HyphaeVM

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.

Do note the in progress number package implementation in snippets

Signed-off-by: Ava Affine <ava@sunnypup.io>
This commit is contained in:
Ava Apples Affine 2025-06-26 10:52:54 -07:00
parent 3a0a141738
commit 0476160ae3
17 changed files with 2065 additions and 17 deletions

12
hyphae/Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[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"