-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCargo.toml
58 lines (52 loc) · 1.32 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
[package]
name = "moxie"
version = "0.7.1"
description = "Incremental runtime for interactive software."
categories = ["asynchronous", "caching", "concurrency", "gui", "rust-patterns"]
keywords = ["incremental", "memoize", "intern", "reactive"]
readme = "CHANGELOG.md"
# update here, update everywhere!
license = "MIT/Apache-2.0"
homepage = "https://moxie.rs"
repository = "https://github.com/anp/moxie.git"
authors = ["Adam Perry <[email protected]>"]
edition = "2018"
[features]
default = []
wasm-bindgen = [ "dyn-cache/wasm-bindgen", "parking_lot/wasm-bindgen", "topo/wasm-bindgen" ]
[dependencies]
dyn-cache = { path = "dyn-cache", version = "0.12.2"}
futures = "0.3.5"
illicit = { path = "illicit", version = "1.1.2"}
parking_lot = "0.11"
scopeguard = "1"
topo = { path = "topo", version = "0.13.2"}
tracing = "^0.1"
[dev-dependencies]
criterion = "0.3"
tracing-subscriber = { version = "0.3.1", features = [ "env-filter" ] }
[workspace]
members = [
"dom",
"dom/augdom",
"dom/examples/counter_fn",
"dom/examples/dom_builder",
"dom/examples/drivertest",
"dom/examples/hacking",
"dom/examples/ssr",
"dom/examples/todo",
"dom/prettiest",
"dom/raf",
"dyn-cache",
"illicit",
"illicit/macro",
"mox",
"topo",
"topo/macro",
]
exclude = [
"ofl",
]
[[bench]]
name = "core"
harness = false