mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-11 23:52:03 +03:00
40 lines
612 B
TOML
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',
|
|
]
|