forked from seed-rs/seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
121 lines (114 loc) · 2.92 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[package]
name = "seed"
version = "0.6.0"
description = "A Rust framework for creating web apps, using WebAssembly"
authors = ["DavidOConnor <[email protected]>"]
license = "MIT"
repository = "https://github.com/seed-rs/seed"
homepage = "https://seed-rs.org"
documentation = "https://docs.rs/seed"
readme = "README.md"
keywords = ["wasm", "webassembly", "frontend", "framework", "web"]
categories = ["wasm", "web-programming"]
edition = "2018"
build = "build.rs"
[build-dependencies]
version_check = "0.9.1"
[dev-dependencies]
wasm-bindgen-test = "0.3.5"
[dependencies]
console_error_panic_hook = "0.1.6"
cookie = { version = "0.12", features = ["percent-encode"] }
enclose = "1.1.6"
gloo-timers = { version = "0.2.0", features = ["futures"] }
indexmap = "1.3.0"
js-sys = "0.3.32"
pulldown-cmark = "0.6.1"
serde = { version = "1.0.103", features = ['derive'] }
serde_json = "1.0.44"
wasm-bindgen = {version = "0.2.59", features = ["serde-serialize"]}
wasm-bindgen-futures = "0.4.9"
# @TODO: remove once we can use entities without `Debug` in `log!` and `error!` on `stable` Rust.
# https://github.com/Centril/rfcs/blob/rfc/quick-debug-macro/text/0000-quick-debug-macro.md#types-which-are-not-debug
dbg = "1.0.4"
futures = "0.3.4"
uuid = { version = "0.8.1", features = ["v4", "wasm-bindgen"] }
[dependencies.web-sys]
version = "0.3.36"
features = [
"AbortController",
"AbortSignal",
"CanvasRenderingContext2d",
"CustomEvent",
"CustomEventInit",
"Document",
"DomException",
"Element",
"Event",
"EventTarget",
"HashChangeEvent",
"Headers",
"History",
"HtmlElement",
"HtmlCanvasElement",
"HtmlCollection",
"HtmlDocument",
"HtmlInputElement",
"HtmlMenuItemElement",
"HtmlProgressElement",
"HtmlOptionElement",
"HtmlDataElement",
"HtmlMeterElement",
"HtmlLiElement",
"HtmlOutputElement",
"HtmlParamElement",
"HtmlTextAreaElement",
"HtmlSelectElement",
"HtmlButtonElement",
"Location",
"MouseEvent",
"Node",
"NodeList",
"Performance",
"PointerEvent",
"PopStateEvent",
"ReferrerPolicy",
"Request",
"RequestCache",
"RequestCredentials",
"RequestInit",
"RequestMode",
"RequestRedirect",
"Response",
"Storage",
"Text",
"console",
"Window",
"KeyboardEvent",
"InputEvent",
"Url",
]
[workspace]
members = [
"examples/animation_frame",
"examples/app_builder",
"examples/counter",
"examples/counter_advanced",
"examples/canvas",
"examples/drop_zone",
"examples/mathjax",
"examples/orders",
# "examples/server_integration", # has own workspace
"examples/server_interaction",
"examples/subscribe",
"examples/tea_component",
"examples/todomvc",
"examples/update_from_js",
"examples/user_media",
"examples/websocket",
"examples/window_events",
]
exclude = [
# it has own workspace
"examples/server_integration",
]