rust-dominator/examples/animation/Cargo.toml

29 lines
486 B
TOML
Raw Normal View History

[package]
name = "animation"
version = "0.1.0"
description = "Animation demo using dominator"
2020-03-11 09:23:41 -04:00
authors = ["Pauan <pauanyu+github@pm.me>"]
categories = ["wasm"]
readme = "README.md"
license = "MIT"
edition = "2018"
[profile.release]
lto = true
[lib]
crate-type = ["cdylib"]
[dependencies]
2020-03-11 09:23:41 -04:00
console_error_panic_hook = "0.1.5"
dominator = "0.5.0"
wasm-bindgen = "0.2.45"
futures-signals = "0.3.0"
2020-03-11 09:23:41 -04:00
futures = "0.3.0"
[dependencies.web-sys]
version = "0.3.22"
2019-08-28 23:17:47 -04:00
features = [
"console",
]