This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
executable file
·168 lines (148 loc) · 4.46 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
[package]
name = "glazier"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/linebender/glazier"
description = "Cross-platform native API abstraction for building GUI applications."
keywords = ["gui", "native", "window", "menu", "winit"]
categories = [
"gui",
"os",
"os::windows-apis",
"os::macos-apis",
"os::linux-apis",
]
exclude = ["/.github/"]
publish = false # Until it's ready
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
default-target = "x86_64-pc-windows-msvc"
# rustdoc-scrape-examples tracking issue https://github.com/rust-lang/rust/issues/88791
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[features]
default = ["x11"]
x11 = ["ashpd", "bindgen", "futures", "nix", "pkg-config", "x11rb"]
wayland = [
# Required for XKBCommon
"pkg-config",
"bindgen",
"nix",
"smithay-client-toolkit",
"wayland-backend",
]
accesskit = [
"dep:accesskit",
"accesskit_macos",
"accesskit_windows",
"once_cell",
]
[dependencies]
# Moving forward, this version should align with the kurbo version in peniko.
kurbo = "0.11.0"
tracing = { version = "0.1.22", features = ["log"] }
lazy_static = "1.4.0"
cfg-if = "1.0.0"
instant = { version = "0.1.6", features = ["wasm-bindgen"] }
anyhow = "1.0.32"
keyboard-types = { version = "0.7", default_features = false }
memchr = "2.5"
# Optional dependencies
raw-window-handle = { version = "0.5.0", default_features = false }
accesskit = { version = "0.12.0", optional = true }
once_cell = { version = "1", optional = true }
[target.'cfg(target_os="windows")'.dependencies]
scopeguard = "1.1.0"
wio = "0.2.2"
accesskit_windows = { version = "0.15.0", optional = true }
once_cell = "1"
[target.'cfg(target_os="windows")'.dependencies.winapi]
version = "0.3.9"
features = [
"winbase",
"libloaderapi",
"errhandlingapi",
"winuser",
"shellscalingapi",
"shobjidl",
"combaseapi",
"dxgi1_3",
"dwmapi",
"wincon",
"fileapi",
"processenv",
"winbase",
"winerror",
"handleapi",
"shellapi",
"winnls",
]
[target.'cfg(target_os="macos")'.dependencies]
block = "0.1.6"
cocoa = "0.25.0"
objc = "0.2.7"
core-graphics = "0.23.0"
bitflags = "2.0.0"
accesskit_macos = { version = "0.10.0", optional = true }
[target.'cfg(any(target_os = "freebsd", target_os="linux", target_os="openbsd"))'.dependencies]
ashpd = { version = "0.5", optional = true }
futures = { version = "0.3.24", optional = true, features = ["executor"] }
nix = { version = "0.25.0", optional = true }
x11rb = { version = "0.12", features = [
"allow-unsafe-code",
"present",
"render",
"randr",
"xfixes",
"xkb",
"resource_manager",
"cursor",
"xinput",
], optional = true }
rand = { version = "0.8.0", optional = true }
log = { version = "0.4.14", optional = true }
smithay-client-toolkit = { version = "0.17.0", optional = true, default-features = false, features = [
# Don't use the built-in xkb handling
"calloop",
] }
# Wayland dependencies
# Needed for supporting RawWindowHandle
wayland-backend = { version = "0.1.0", default_features = false, features = [
"client_system",
], optional = true }
[target.'cfg(target_arch="wasm32")'.dependencies]
wasm-bindgen = "0.2.67"
js-sys = "0.3.44"
[target.'cfg(target_arch="wasm32")'.dependencies.web-sys]
version = "0.3.44"
features = [
"Window",
"MouseEvent",
"CssStyleDeclaration",
"WheelEvent",
"KeyEvent",
"KeyboardEvent",
"Navigator",
]
[dev-dependencies]
pretty_env_logger = "0.5"
static_assertions = "1.1.0"
test-log = { version = "0.2.5", features = ["trace"], default-features = false }
tracing-subscriber = { version = "0.3.2", features = ["env-filter"] }
unicode-segmentation = "1.7.0"
vello = { git = "https://github.com/linebender/vello", rev = "b1bd9e361f2944b71cef0ea8a2c71dce5182d79b" }
parley = { git = "https://github.com/dfrg/parley", rev = "1940d1ae9f2a9b44b7c18967147ffa7d345fdafd" }
pollster = "0.3.0"
wgpu = "0.18.0"
[target.'cfg(any(target_os = "freebsd", target_os="linux", target_os="openbsd"))'.build-dependencies]
bindgen = { version = "0.66", optional = true }
pkg-config = { version = "0.3.25", optional = true }
[[example]]
name = "shello"
# This actually enables scraping for all examples, not just `shello`.
# However it is possible to add another [[example]] entry to disable it for a specific example.
doc-scrape-examples = true
[[example]]
name = "accesskit"
required-features = ["accesskit"]