rust-dominator/Cargo.toml

80 lines
1.6 KiB
TOML
Raw Normal View History

2018-02-21 01:37:09 -05:00
[package]
name = "dominator"
2022-04-12 13:09:10 -04:00
version = "0.5.24"
2020-03-11 09:23:41 -04:00
authors = ["Pauan <pauanyu+github@pm.me>"]
2021-04-29 19:36:07 -04:00
description = "Zero-cost ultra-high-performance declarative 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"]
2019-09-23 01:18:18 -04:00
categories = ["gui", "web-programming", "wasm"]
edition = "2018"
2018-02-21 01:37:09 -05:00
2019-10-27 23:45:42 -04:00
[features]
# TODO should this enable interning ?
default = ["wasm-bindgen/enable-interning"]
nightly = []
2019-10-27 23:45:42 -04:00
2018-02-21 01:37:09 -05:00
[dependencies]
2021-05-28 09:18:14 -04:00
once_cell = "1.7.2"
2018-02-25 06:58:20 -05:00
discard = "1.0.3"
2020-10-20 06:17:33 -04:00
pin-project = "1.0.1"
2020-03-11 09:23:41 -04:00
futures-channel = "0.3.0"
futures-util = "0.3.0"
futures-signals = "0.3.5"
2019-10-27 23:45:42 -04:00
wasm-bindgen = "0.2.48"
js-sys = "0.3.22"
2020-03-11 09:23:41 -04:00
wasm-bindgen-futures = "0.4.9"
[dependencies.web-sys]
version = "0.3.22"
features = [
"CharacterData",
"Comment",
"CssRule",
"CssRuleList",
"CssStyleDeclaration",
"CssStyleRule",
"CssStyleSheet",
2020-10-20 06:10:07 -04:00
"DataTransfer",
2019-07-22 22:45:31 -04:00
"Document",
"DomTokenList",
2020-10-20 06:10:07 -04:00
"DragEvent",
"Element",
2019-06-21 14:58:39 -04:00
"Event",
"EventTarget",
"FocusEvent",
"History",
"InputEvent",
"HtmlElement",
"HtmlHeadElement",
"HtmlInputElement",
"HtmlStyleElement",
"HtmlTextAreaElement",
"KeyboardEvent",
"Location",
"MouseEvent",
2022-03-21 14:03:11 -04:00
"AnimationEvent",
"WheelEvent",
"Node",
2022-03-12 21:34:25 -05:00
"PointerEvent",
2020-05-04 17:28:09 -04:00
"ShadowRoot",
"ShadowRootInit",
"ShadowRootMode",
"StyleSheet",
"SvgElement",
"Text",
2022-04-28 15:37:19 -04:00
"Touch",
"TouchEvent",
"TouchList",
2019-09-23 01:18:18 -04:00
"UiEvent",
"Window",
]
2018-06-25 21:02:48 -04:00
[profile.release]
debug-assertions = true
[profile.bench]
debug-assertions = true