-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
77 lines (66 loc) · 1.61 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
[package]
name = "ux-charts"
version = "0.1.2"
authors = ["Victor Dudochkin <[email protected]>"]
readme = "README.md"
homepage = "https://angular-rust.github.io/ux-charts"
repository = "https://github.com/angular-rust/ux-charts"
documentation = "https://docs.rs/ux-charts"
description = "Backend and runtime agnostic chart library"
keywords = ["webassembly", "gtk", "cairo", "canvas", "charts"]
categories = ["multimedia", "wasm", "web-programming", "gui", "visualization"]
edition = "2018"
license = "MPL-2.0"
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "charts"
[package.metadata.docs.rs]
features = ["dox"]
[features]
dox = ["ux-animate/dox", "cairo-rs/dox"]
[dependencies]
log = "0.4"
lazy_static = "1.4"
ux-dataflow = "0.1.1"
ux-animate = "0.1.2"
[dependencies.ux-primitives]
version = "0.1.3"
features = [ "canvas" ]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
cairo-rs = "0.9"
[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.2"
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]
[build-dependencies]