1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 23:00:04 -04:00

squash before rebase

This commit is contained in:
Matt Campbell
2022-11-29 10:24:06 -06:00
parent 0336816faf
commit 6483b45c6d
27 changed files with 870 additions and 71 deletions

View File

@@ -20,6 +20,9 @@ all-features = true
[features]
default = ["clipboard", "links", "wayland", "winit/default"]
## Enable platform accessibility API implementations through [AccessKit](https://accesskit.dev/).
accesskit = ["accesskit_winit", "egui/accesskit"]
## [`bytemuck`](https://docs.rs/bytemuck) enables you to cast [`egui::epaint::Vertex`], [`egui::Vec2`] etc to `&[u8]`.
bytemuck = ["egui/bytemuck"]
@@ -57,6 +60,9 @@ winit = { version = "0.27.2", default-features = false }
## Enable this when generating docs.
document-features = { version = "0.2", optional = true }
# feature accesskit
accesskit_winit = { version = "0.6.0", optional = true }
puffin = { version = "0.14", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }