mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Fix compilation of egui_extras without serde feature (#5014)
* Closes https://github.com/emilk/egui/issues/4771
This commit is contained in:
15
tests/test_egui_extras_compilation/Cargo.toml
Normal file
15
tests/test_egui_extras_compilation/Cargo.toml
Normal file
@@ -0,0 +1,15 @@
|
||||
[package]
|
||||
name = "test_egui_extras_compilation"
|
||||
version = "0.1.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.76"
|
||||
publish = false
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
|
||||
[dependencies]
|
||||
eframe = { workspace = true, features = ["default", "persistence"] }
|
||||
egui_extras = { workspace = true }
|
||||
1
tests/test_egui_extras_compilation/README.md
Normal file
1
tests/test_egui_extras_compilation/README.md
Normal file
@@ -0,0 +1 @@
|
||||
Regression test for <https://github.com/emilk/egui/issues/4771>
|
||||
3
tests/test_egui_extras_compilation/src/main.rs
Normal file
3
tests/test_egui_extras_compilation/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
//! Regression test for <https://github.com/emilk/egui/issues/4771>
|
||||
|
||||
fn main() {}
|
||||
Reference in New Issue
Block a user