diff --git a/crates/egui_extras/Cargo.toml b/crates/egui_extras/Cargo.toml index 89de6abfe..8d1cb543a 100644 --- a/crates/egui_extras/Cargo.toml +++ b/crates/egui_extras/Cargo.toml @@ -57,15 +57,15 @@ image = ["dep:image"] ## Only enabled on native, because of the low resolution (1ms) of clocks in browsers. puffin = ["dep:puffin", "egui/puffin"] +## Derive serde Serialize/Deserialize on stateful structs +serde = ["egui/serde", "dep:serde"] + ## Support loading svg images. svg = ["resvg"] ## Enable better syntax highlighting using [`syntect`](https://docs.rs/syntect). syntect = ["dep:syntect"] -## Derive serde Serialize/Deserialize on stateful structs -serde = ["egui/serde", "dep:serde"] - [dependencies] egui = { workspace = true, default-features = false }