Archive Rust bootstrap — El compiler is now self-hosting

This commit is contained in:
Will Anderson
2026-04-29 22:21:31 -05:00
parent 9a0747aa13
commit 4f3543b068
139 changed files with 8980 additions and 1778 deletions
@@ -0,0 +1,21 @@
[package]
name = "el-vm"
description = "El Virtual Machine — core bytecode executor used by the elvm binary and el toolchain"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
el-compiler = { workspace = true }
serde_json = { workspace = true }
reqwest = { workspace = true }
uuid = { workspace = true }
walkdir = { workspace = true }
blake3 = { workspace = true }
hmac = { workspace = true }
sha2 = { workspace = true }
hex = { workspace = true }
base64 = { workspace = true }
aes-gcm = { workspace = true }
rand = { workspace = true }
crossbeam-channel = { workspace = true }