mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-22 21:20:52 +00:00
38 lines
607 B
TOML
38 lines
607 B
TOML
|
[package]
|
||
|
name = "todomvc"
|
||
|
version = "0.1.0"
|
||
|
authors = ["The wasm-bindgen Developers"]
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[build-dependencies]
|
||
|
askama = "0.7.2"
|
||
|
|
||
|
[dependencies]
|
||
|
js-sys = { path = "../../crates/js-sys" }
|
||
|
wasm-bindgen = { path = "../../" }
|
||
|
askama = "0.7.2"
|
||
|
|
||
|
[dependencies.web-sys]
|
||
|
path = "../../crates/web-sys"
|
||
|
features = [
|
||
|
'console',
|
||
|
'CssStyleDeclaration',
|
||
|
'Document',
|
||
|
'DomStringMap',
|
||
|
'DomTokenList',
|
||
|
'Element',
|
||
|
'Event',
|
||
|
'EventTarget',
|
||
|
'HtmlBodyElement',
|
||
|
'HtmlElement',
|
||
|
'HtmlInputElement',
|
||
|
'KeyboardEvent',
|
||
|
'Location',
|
||
|
'Node',
|
||
|
'NodeList',
|
||
|
'Storage',
|
||
|
'Window',
|
||
|
]
|