rename crates/ to engrams/; add el-compiler el package with bootstrap artifact

- crates/ → engrams/ (Rust engrams live here)
- el-compiler/ added: el self-hosting compiler as an el package
  - src/{compiler,lexer,parser,codegen}.el
  - bootstrap/el-compiler.elc (114KB, Rust-compiled seed)
- el.toml Cargo.toml workspace paths updated
- neuron-rs cross-repo path deps fixed (were pointing to products/ instead of foundation/)
This commit is contained in:
Will Anderson
2026-04-29 03:27:32 -05:00
parent 19ed2721ee
commit a42429012e
120 changed files with 3836 additions and 64 deletions
+30 -28
View File
@@ -1,18 +1,18 @@
[workspace]
members = [
"crates/el-lexer",
"crates/el-parser",
"crates/el-types",
"crates/el-compiler",
"crates/el-seal",
"crates/el-manifest",
"crates/el-registry",
"crates/el-build",
"crates/el-test",
"crates/el-stdlib",
"crates/el-integration",
"crates/el-fmt",
"crates/el-lint",
"engrams/el-lexer",
"engrams/el-parser",
"engrams/el-types",
"engrams/el-compiler",
"engrams/el-seal",
"engrams/el-manifest",
"engrams/el-registry",
"engrams/el-build",
"engrams/el-test",
"engrams/el-stdlib",
"engrams/el-integration",
"engrams/el-fmt",
"engrams/el-lint",
"bin/el",
]
resolver = "2"
@@ -24,23 +24,23 @@ license = "MIT"
authors = ["Neuron Technologies"]
[workspace.dependencies]
# Internal crates
el-lexer = { path = "crates/el-lexer" }
el-parser = { path = "crates/el-parser" }
el-types = { path = "crates/el-types" }
el-compiler = { path = "crates/el-compiler" }
el-seal = { path = "crates/el-seal" }
el-manifest = { path = "crates/el-manifest" }
el-registry = { path = "crates/el-registry" }
el-build = { path = "crates/el-build" }
el-test = { path = "crates/el-test" }
el-stdlib = { path = "crates/el-stdlib" }
el-integration = { path = "crates/el-integration" }
el-fmt = { path = "crates/el-fmt" }
el-lint = { path = "crates/el-lint" }
# Internal engrams (Rust substrate)
el-lexer = { path = "engrams/el-lexer" }
el-parser = { path = "engrams/el-parser" }
el-types = { path = "engrams/el-types" }
el-compiler = { path = "engrams/el-compiler" }
el-seal = { path = "engrams/el-seal" }
el-manifest = { path = "engrams/el-manifest" }
el-registry = { path = "engrams/el-registry" }
el-build = { path = "engrams/el-build" }
el-test = { path = "engrams/el-test" }
el-stdlib = { path = "engrams/el-stdlib" }
el-integration = { path = "engrams/el-integration" }
el-fmt = { path = "engrams/el-fmt" }
el-lint = { path = "engrams/el-lint" }
# Engram crypto (path dep — the sealed target depends on it)
engram-crypto = { path = "../engram/crates/engram-crypto" }
engram-crypto = { path = "../engram/engrams/engram-crypto" }
# External
serde = { version = "1", features = ["derive"] }
@@ -63,3 +63,5 @@ softbuffer = "0.3"
tiny-skia = "0.11"
fontdue = "0.8"
image = { version = "0.25", default-features = false, features = ["png"] }
tungstenite = { version = "0.23", features = ["native-tls"] }
native-tls = "0.2"