mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
GPUI AccessKit integration This PR is replacing #51097 , and is much more limited in scope. This PR *ONLY* adds AccessKit support to GPUI, and doesn't touch Zed. Once this lands, we can start adding aria attributes to Zed's components. This PR is the first step to addressing #41138 . Release Notes: - N/A or Added/Fixed/Improved ... --------- Co-authored-by: John Tur <john-tur@outlook.com> Co-authored-by: Zed Zippy <234243425+zed-zippy[bot]@users.noreply.github.com> Co-authored-by: Bennet Bo Fenner <bennetbo@gmx.de> Co-authored-by: Agus Zubiaga <agus@zed.dev>
48 lines
1 KiB
TOML
48 lines
1 KiB
TOML
[package]
|
|
name = "gpui_windows"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/gpui_windows.rs"
|
|
|
|
[features]
|
|
default = ["gpui/default"]
|
|
test-support = ["gpui/test-support"]
|
|
screen-capture = ["gpui/screen-capture", "scap"]
|
|
|
|
[dependencies]
|
|
gpui.workspace = true
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
accesskit.workspace = true
|
|
accesskit_windows.workspace = true
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
etagere = "0.2"
|
|
futures.workspace = true
|
|
image.workspace = true
|
|
itertools.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
rand.workspace = true
|
|
raw-window-handle = "0.6"
|
|
smallvec.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
windows.workspace = true
|
|
windows-core.workspace = true
|
|
windows-numerics = "0.2"
|
|
windows-registry = "0.5"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.scap]
|
|
workspace = true
|
|
optional = true
|
|
|
|
[target.'cfg(target_os = "windows")'.build-dependencies]
|
|
windows-registry = "0.5"
|