wasm-bindgen/examples/todomvc/Cargo.toml
2020-04-29 11:22:35 -05:00

40 lines
612 B
TOML

[package]
name = "todomvc"
version = "0.1.0"
authors = ["The wasm-bindgen Developers"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[build-dependencies]
askama = "0.7.2"
[dependencies]
js-sys = "0.3.38"
wasm-bindgen = "0.2.61"
askama = "0.7.2"
console_error_panic_hook = "0.1.5"
[dependencies.web-sys]
version = "0.3.5"
features = [
'console',
'CssStyleDeclaration',
'Document',
'DomStringMap',
'DomTokenList',
'Element',
'Event',
'EventTarget',
'HtmlBodyElement',
'HtmlElement',
'HtmlInputElement',
'KeyboardEvent',
'Location',
'Node',
'NodeList',
'Storage',
'Window',
]