Files

26 lines
586 B
TOML
Raw Permalink Normal View History

2023-01-01 17:26:21 -06:00
[package]
name = "vweb"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
vcore = { path = "../vcore" }
2023-02-01 20:31:06 -06:00
vgfx = { path = "../vgfx" }
2023-01-26 14:42:44 -06:00
vasm_core = { path = "../vasm_core" }
2023-12-09 13:12:38 -06:00
forge_core = { path = "../forge_core" }
novaforth = { path = "../novaforth" }
2025-11-04 23:32:55 -06:00
wasm-bindgen = "0.2.105"
2023-01-26 14:42:44 -06:00
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
2023-02-01 20:31:06 -06:00
[dependencies.web-sys]
version = "0.3.4"
features = [
'CanvasRenderingContext2d',
'ImageData',
]