forked from linebender/xilem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 948 Bytes
/
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
[workspace]
resolver = "2"
members = [
"xilem_core",
"xilem_web",
"xilem_web/web_examples/counter",
"xilem_web/web_examples/counter_custom_element",
"xilem_web/web_examples/todomvc",
"xilem_web/web_examples/mathml_svg",
"xilem_web/web_examples/svgtoy",
"masonry",
"xilem",
]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/linebender/xilem"
homepage = "https://xilem.dev/"
[workspace.lints]
clippy.semicolon_if_nothing_returned = "warn"
[workspace.dependencies]
xilem_core = { version = "0.1.0", path = "xilem_core" }
masonry = { version = "0.2.0", path = "masonry" }
vello = "0.1.0"
wgpu = "0.19.4"
kurbo = "0.11.0"
parley = "0.1.0"
peniko = "0.1.0"
winit = "0.30.0"
tracing = "0.1.40"
smallvec = "1.13.2"
fnv = "1.0.7"
image = { version = "0.25.1", default-features = false }
instant = "0.1.12"
bitflags = "2.5.0"
accesskit = "0.14.0"
accesskit_winit = "0.20.0"