rust-dominator/Cargo.toml

26 lines
820 B
TOML
Raw Normal View History

2018-02-21 01:37:09 -05:00
[package]
name = "dominator"
2018-03-18 14:50:19 -04:00
version = "0.1.1"
2018-02-21 01:37:09 -05:00
authors = ["Pauan <pcxunlimited@gmail.com>"]
description = "Zero cost virtual DOM library using FRP signals"
repository = "https://github.com/Pauan/rust-dominator"
homepage = "https://github.com/Pauan/rust-dominator"
readme = "README.md"
license = "MIT"
keywords = ["javascript", "dom", "reactive", "signal", "frp"]
categories = ["web-programming", "template-engine", "wasm"]
2018-02-21 01:37:09 -05:00
[dependencies]
stdweb-derive = "0.4.0"
2018-02-21 01:37:09 -05:00
lazy_static = "1.0.0"
2018-02-25 06:58:20 -05:00
discard = "1.0.3"
futures-core = "0.2.0"
#futures-signals = { path = "../rust-signals" }
futures-signals = { git = "https://github.com/Pauan/rust-signals" }
2018-02-23 21:50:03 -05:00
[dependencies.stdweb]
version = "0.4.6"
#git = "https://github.com/koute/stdweb"
#path = "../stdweb"
2018-02-23 21:50:03 -05:00
features = ["experimental_features_which_may_break_on_minor_version_bumps"]