Archived
a42429012e
- 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/)
44 lines
1.4 KiB
TOML
44 lines
1.4 KiB
TOML
[package]
|
|
name = "el"
|
|
description = "Engram language CLI — el build / run / check / seal / unseal / new / add / publish / …"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "el"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
el-lexer = { workspace = true }
|
|
el-parser = { workspace = true }
|
|
el-types = { workspace = true }
|
|
el-compiler = { workspace = true }
|
|
el-seal = { workspace = true }
|
|
el-manifest = { workspace = true }
|
|
el-registry = { workspace = true }
|
|
el-build = { workspace = true }
|
|
el-test = { workspace = true }
|
|
el-fmt = { workspace = true }
|
|
el-lint = { workspace = true }
|
|
clap = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
reqwest = { workspace = true }
|
|
uuid = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
tiny_http = { workspace = true }
|
|
blake3 = { workspace = true }
|
|
hmac = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
base64 = { workspace = true }
|
|
winit = { version = "0.29", default-features = false, features = ["rwh_05"] }
|
|
softbuffer = "0.3"
|
|
tiny-skia = "0.11"
|
|
fontdue = "0.8"
|
|
image = { workspace = true }
|
|
tungstenite = { workspace = true }
|
|
native-tls = { workspace = true }
|