xilem/Cargo.toml

61 lines
1.6 KiB
TOML
Raw Normal View History

[workspace]
members = [
"crates/xilem_core",
"crates/xilem_svg",
"crates/xilem_html",
"crates/xilem_html/web_examples/counter",
"crates/xilem_html/web_examples/counter_untyped",
"crates/xilem_html/web_examples/todomvc",
]
[workspace.package]
edition = "2021"
homepage = "https://xilem.dev/"
repository = "https://github.com/linebender/xilem"
license = "Apache-2.0"
[workspace.dependencies]
xilem_core = { version = "0.1.0", path = "crates/xilem_core" }
kurbo = "0.9.1"
[package]
name = "xilem"
version = "0.1.0"
description = "A next-generation cross-platform Rust UI framework."
keywords = ["gui", "ui", "native", "gpu", "performance"]
categories = ["gui", "graphics", "internationalization", "accessibility"]
exclude = ["/.github/"]
publish = false # Until it's ready
license.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[features]
default = ["x11"]
x11 = ["glazier/x11"]
wayland = ["glazier/wayland"]
[dependencies]
xilem_core.workspace = true
vello = { git = "https://github.com/linebender/vello", rev = "3cb54627de0c1fc40af46429ae67458f07174713" }
wgpu = "0.17.0"
parley = { git = "https://github.com/dfrg/parley", rev = "2371bf4b702ec91edee2d58ffb2d432539580e1e" }
tokio = { version = "1.21", features = ["full"] }
futures-task = "0.3"
bitflags = "2"
tracing = "0.1.37"
accesskit = "0.9.0"
fnv = "1.0.7"
[dependencies.glazier]
git = "https://github.com/linebender/glazier"
rev = "51eb418511790309b90b0d9838e4d91fc11d84d3"
default-features = false
features = ["accesskit"]
[dev-dependencies]
env_logger = "0.10.0"
test-log = "0.2.11"