Archived
316c0a85ce
- Import resolution: resolve_imports() pre-processes import statements by reading and concatenating referenced .el files before compilation - http_serve builtin: tiny_http-based server on configurable port; POST /axon/message stores request in __request__ state, invokes handle_request entry point via sub-interpreter, reads __response__ state for reply - New builtins: blake3_hash, uuid_new, fs_list_recursive, fs_mkdir, fs_exists, path_join, path_parent, str_trim, str_contains, str_replace, str_starts_with, str_ends_with, str_last_index_of, json_get, json_array_push, json_array_len, now_millis, http_get, http_post, int_to_str - Catch-all arms in el-types and el-compiler for new AST variants (Import, ProtocolDef, ImplDef, Closure, Try, MapLiteral, TypeExpr::Result, TypeExpr::Map) - Parser: decorators field on FnDef, import/protocol/impl parsing
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[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",
|
|
"bin/el",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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" }
|
|
|
|
# Engram crypto (path dep — the sealed target depends on it)
|
|
engram-crypto = { path = "../engram/crates/engram-crypto" }
|
|
|
|
# External
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
blake3 = "1"
|
|
aes-gcm = "0.10"
|
|
rand = "0.8"
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
walkdir = "2"
|
|
tiny_http = "0.12"
|