mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 12:44:31 +03:00
25 lines
436 B
TOML
Executable File
25 lines
436 B
TOML
Executable File
[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',
|
|
]
|