mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 04:23:12 +03:00
28 lines
438 B
TOML
28 lines
438 B
TOML
[package]
|
|
name = "wasm-bindgen-paint"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
js-sys = "0.3.27"
|
|
wasm-bindgen = "0.2.50"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = [
|
|
'CanvasRenderingContext2d',
|
|
'CssStyleDeclaration',
|
|
'Document',
|
|
'Element',
|
|
'EventTarget',
|
|
'HtmlCanvasElement',
|
|
'HtmlElement',
|
|
'MouseEvent',
|
|
'Node',
|
|
'Window',
|
|
]
|