21 lines
560 B
TOML
21 lines
560 B
TOML
[package]
|
|
name = "elvm"
|
|
description = "El Virtual Machine — executes compiled El bytecode (.elc) natively"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "elvm"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
el-compiler = { workspace = true }
|
|
el-vm = { workspace = true }
|
|
clap = { workspace = true }
|
|
|
|
# Native window / WebView (macOS: WKWebView via wry)
|
|
wry = { version = "0.47", default-features = false }
|
|
winit = { version = "0.29", default-features = false, features = ["rwh_05", "rwh_06"] }
|
|
dpi = "0.1"
|