mirror of https://github.com/linebender/xilem
41 lines
948 B
TOML
41 lines
948 B
TOML
[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"
|