This repository has been archived on 2026-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
el-retired/Cargo.toml
T
Will Anderson d86bbc3740 add canvas_image builtin for PNG rendering with alpha blending
Registers canvas_image(path, x, y, w, h) in the type system and
implements it in the interpreter using the image crate — scales to
exact dimensions via Lanczos3 and alpha-composites onto the pixmap.
2026-04-28 14:51:24 -05:00

66 lines
1.9 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",
"crates/el-stdlib",
"crates/el-integration",
"crates/el-fmt",
"crates/el-lint",
"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" }
el-stdlib = { path = "crates/el-stdlib" }
el-integration = { path = "crates/el-integration" }
el-fmt = { path = "crates/el-fmt" }
el-lint = { path = "crates/el-lint" }
# 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"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
base64 = "0.22"
winit = { version = "0.29", default-features = false, features = ["rwh_05"] }
softbuffer = "0.3"
tiny-skia = "0.11"
fontdue = "0.8"
image = { version = "0.25", default-features = false, features = ["png"] }