-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
93 lines (83 loc) · 1.91 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
[package]
name = "ux-components"
version = "0.1.3"
authors = ["Victor Dudochkin <dudochkin.victor@gmail.com>"]
readme = "README.md"
homepage = "https://angular-rust.github.io/ux-components"
repository = "https://github.com/angular-rust/ux-components"
documentation = "https://docs.rs/ux-components"
description = "Backend agnostic GUI framework"
keywords = ["wasm", "web", "material-design", "material-components", "gtk"]
categories = ["wasm", "web-programming", "gui"]
edition = "2018"
license = "MPL-2.0"
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "components"
[package.metadata.docs.rs]
features = ["dox"]
[features]
dox = ["ux-dx/dox"]
# "ux-charts/dox"
# "ux-animate/dox", "x11/dox", "gobject-sys/dox", , "pango/dox"
[dependencies]
log = "0.4"
bitflags = "1.0"
rand = "0.8"
ux-macro = "0.1"
ux-dx = "0.2"
ux-dataflow = "0.1"
# ux-animate = "0.1"
# ux-charts = "0.1"
once_cell = "1.7"
intmap = "0.7"
url = "2.2"
fontdue = "0.7.2"
cgmath = "0.18"
structopt = "0.3"
stretch = "0.3.2"
# ux-css = "0"
crossbeam = "0.8.1"
bytes = "1.1.0"
futures = "0.3.21"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# png = "0.16"
# pango = "0.9"
# cairo-rs = { version = "0.9", features = ["png"] }
# starup notifications
notify-rust = "4"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
wasm-bindgen-futures = "0.4"
wasm-logger = "0.2"
gloo = "0.3"
wasm-bindgen-test = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
'KeyboardEvent',
"ValidityState",
"CustomEvent",
"Node",
"Element",
"HtmlElement",
"Window",
"Document",
"CanvasRenderingContext2d",
"TextMetrics",
"HtmlCanvasElement",
"HtmlImageElement",
"SvgImageElement",
"HtmlVideoElement",
"ImageBitmap",
"CanvasWindingRule",
"Path2d",
"CanvasPattern",
"CanvasGradient",
"HitRegionOptions",
"ImageData",
"DomMatrix"
]
[dev-dependencies]