-
Notifications
You must be signed in to change notification settings - Fork 65
/
Cargo.toml
84 lines (79 loc) · 1.75 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "dominator"
version = "0.5.38"
authors = ["Pauan <[email protected]>"]
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"]
categories = ["gui", "web-programming", "wasm"]
edition = "2018"
[features]
# TODO should this enable interning ?
default = ["wasm-bindgen/enable-interning"]
nightly = []
[dependencies]
once_cell = "1.7.2"
discard = "1.0.3"
pin-project = "1.0.1"
futures-channel = "0.3.0"
futures-util = "0.3.0"
futures-signals = "0.3.5"
wasm-bindgen = "0.2.48"
js-sys = "0.3.22"
wasm-bindgen-futures = "0.4.9"
gloo-events = "0.1.2"
[dependencies.web-sys]
version = "0.3.70"
features = [
"CharacterData",
"Comment",
"CssRule",
"CssRuleList",
"CssStyleDeclaration",
"CssStyleRule",
"CssStyleSheet",
"DataTransfer",
"Document",
"DomTokenList",
"DragEvent",
"Element",
"Event",
"EventTarget",
"FocusEvent",
"History",
"InputEvent",
"HtmlElement",
"HtmlHeadElement",
"HtmlInputElement",
"HtmlStyleElement",
"HtmlTextAreaElement",
"KeyboardEvent",
"Location",
"MediaQueryList",
"MouseEvent",
"AnimationEvent",
"WheelEvent",
"Node",
"PointerEvent",
"ScrollBehavior",
"ScrollIntoViewOptions",
"ScrollLogicalPosition",
"ShadowRoot",
"ShadowRootInit",
"ShadowRootMode",
"StyleSheet",
"SvgElement",
"Text",
"Touch",
"TouchEvent",
"TouchList",
"UiEvent",
"Window",
]
[profile.release]
debug-assertions = true
[profile.bench]
debug-assertions = true