rust-dominator/Cargo.toml

23 lines
699 B
TOML
Raw Normal View History

2018-02-21 01:37:09 -05:00
[package]
name = "dominator"
version = "0.1.0"
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"
2018-03-15 06:54:18 -04:00
futures = "0.1.18"
signals = { git = "https://github.com/Pauan/rust-signals" }
2018-02-23 21:50:03 -05:00
[dependencies.stdweb]
version = "0.4.0"
2018-02-23 21:50:03 -05:00
features = ["experimental_features_which_may_break_on_minor_version_bumps"]