-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
98 lines (93 loc) · 2.26 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
94
95
96
97
98
[workspace]
exclude = ["examples/attachments"]
members = [
"core",
"gpu",
"painter",
"macros",
"algo",
"widgets",
"ribir",
"themes/*",
"geom",
"tests",
"dev-helper",
"examples/*",
"cli",
]
resolver = "2"
[profile.bench]
debug = true
[profile.release]
lto = true
strip = true
codegen-units = 1
[workspace.package]
authors = ["RibirX<[email protected]>"]
categories = ["gui"]
description = "A non-intrusive declarative GUI framework, to build modern native/wasm cross-platform applications."
documentation = "https://ribir.org/docs"
edition = "2021"
homepage = "https://ribir.org"
keywords = ["gui", "ui", "declarative", "compose-ui"]
license = "MIT"
readme = "README.md"
version = "0.4.0-alpha.15"
rust-version = "1.81.0"
[workspace.dependencies]
ahash = "0.8.11"
arboard = "3.2.0"
bitflags = "2.6.0"
blake3 = "1.3.3"
colored = "2.1.0"
derive_more = "1.0.0"
dssim-core="3.2.9"
env_logger = "0.7.1"
euclid = "0.22.11"
fontdb = "0.23.0"
futures = "0.3.26"
guillotiere = "0.6.0"
image = { version = "0.24.5" }
indextree = "4.7.3"
log = "0.4.14"
lyon_algorithms = "1.0.4"
lyon_geom = "1.0.6"
lyon_path = "1.0.6"
lyon_tessellation = "1.0.15"
material-color-utilities-rs = "0.2.1"
icrate = "0.0.4"
paste = "1.0"
pin-project-lite = "0.2.15"
proc-macro2 = "1.0.89"
quote = "1.0.37"
rayon = "1.10.0"
rustybuzz = "0.20.1"
rxrust = { version="1.0.0-beta.9", default-features = false, features = ["futures-scheduler"]}
scoped_threadpool = "0.1.9"
triomphe = "0.1.12"
serde = "1.0"
serde_json = "1.0.82"
smallvec = "1.8.0"
syn = "2.0.87"
unicode-bidi = "0.3.7"
unicode-script = "0.5.4"
unicode-segmentation = "1.9.0"
usvg = { version= "0.44.0", default-features = false }
webbrowser = "0.8.8"
wgpu = {version = "0.20.0", features=["webgl"]}
winit = { version="0.29.5", default-features = false, features = ["x11", "wayland", "wayland-dlopen", "rwh_06"]}
zerocopy = "0.7.3"
quick-xml = "0.37.1"
macos-accessibility-client = { version = "0.0.1" }
tokio = { version = "1.0" }
tokio-stream = { version = "0.1" }
priority-queue = "2.1.1"
phf = "0.11.2"
web-sys = { version = "0.3.69", features = ["HtmlCollection"] }
web-time = "1.1.0"
wasm-bindgen-futures = "0.4.42"
getrandom = { version = "0.2.12", features = ["js"] }
heck = "0.5.0"
[workspace.metadata.release]
shared-version = true
tag = false