21 lines
357 B
TOML
21 lines
357 B
TOML
[package]
|
|
name = "wedge_web"
|
|
version = "0.1.0"
|
|
authors = ["Michael Zhang <iptq@protonmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
wedge_core = { path = "../core" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"WebGlBuffer",
|
|
"WebGlProgram",
|
|
"WebGlRenderingContext",
|
|
"WebGlShader"
|
|
]
|