26 lines
586 B
TOML
26 lines
586 B
TOML
[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" }
|
|
vgfx = { path = "../vgfx" }
|
|
vasm_core = { path = "../vasm_core" }
|
|
forge_core = { path = "../forge_core" }
|
|
novaforth = { path = "../novaforth" }
|
|
wasm-bindgen = "0.2.105"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde-wasm-bindgen = "0.4"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = [
|
|
'CanvasRenderingContext2d',
|
|
'ImageData',
|
|
] |