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-01-26 14:42:44 -06:00
|
|
|
vasm_core = { path = "../vasm_core" }
|
2023-01-01 17:26:21 -06:00
|
|
|
wasm-bindgen = "0.2"
|
2023-01-26 14:42:44 -06:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde-wasm-bindgen = "0.4"
|