mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-18 03:00:50 +00:00
25 lines
436 B
TOML
25 lines
436 B
TOML
|
[package]
|
||
|
name = "wasm-bindgen-webgl-demo"
|
||
|
version = "0.1.0"
|
||
|
authors = ["The wasm-bindgen Developers"]
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
js-sys = { path = "../../crates/js-sys" }
|
||
|
wasm-bindgen = { path = "../.." }
|
||
|
|
||
|
[dependencies.web-sys]
|
||
|
path = "../../crates/web-sys"
|
||
|
features = [
|
||
|
'Document',
|
||
|
'Element',
|
||
|
'HtmlCanvasElement',
|
||
|
'WebGlBuffer',
|
||
|
'WebGlRenderingContext',
|
||
|
'WebGlProgram',
|
||
|
'WebGlShader',
|
||
|
'Window',
|
||
|
]
|