-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCargo.toml
44 lines (37 loc) · 1.21 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
[package]
name = "moxie-dom"
version = "0.3.0-pre"
description = "Incrementally interactive HTML applications."
categories = ["asynchronous", "concurrency", "gui", "wasm", "web-programming"]
keywords = ["dom", "web", "incremental", "interactive"]
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"
[package.metadata.docs.rs]
default-target = "wasm32-unknown-unknown"
all-features = true
[lib]
crate-type = [ "cdylib", "rlib", ]
[features]
default = ["webdom"]
rsdom = ["augdom/rsdom"]
webdom = ["augdom/webdom", "raf", "wasm-bindgen-futures"]
[dependencies]
augdom = { path = "augdom", version = "0.2.0-pre"}
futures = "0.3.5"
illicit = { path = "../illicit", version = "1.1.1"}
moxie = { path = "../", version = "0.3.0-pre"}
paste = "1.0.0"
scopeguard = "1"
topo = { path = "../topo", version = "0.13.0"}
# web-only
raf = { path = "raf", version = "0.2.0-pre", optional = true }
wasm-bindgen-futures = { version = "0.4.13", optional = true }
[dev-dependencies]
mox = { path = "../mox", version = "0.10.0-pre"}
pretty_assertions = "0.6"
wasm-bindgen-test = "0.3"