mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 05:52:21 +03:00
27 lines
491 B
TOML
27 lines
491 B
TOML
[package]
|
|
name = "wasm-bindgen-paint"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
js-sys = { path = "../../crates/js-sys" }
|
|
wasm-bindgen = { path = "../..", features = ["nightly"] }
|
|
|
|
[dependencies.web-sys]
|
|
path = "../../crates/web-sys"
|
|
features = [
|
|
'CanvasRenderingContext2d',
|
|
'CssStyleDeclaration',
|
|
'Document',
|
|
'Element',
|
|
'EventTarget',
|
|
'HtmlCanvasElement',
|
|
'HtmlElement',
|
|
'MouseEvent',
|
|
'Node',
|
|
'Window',
|
|
]
|