1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

[eframe] Make persistence, http and time optional features

Saves on compile times.
This commit is contained in:
Emil Ernerfeldt
2021-01-04 01:44:02 +01:00
parent 00269f96c0
commit 69d31a5e47
30 changed files with 412 additions and 303 deletions

View File

@@ -9,6 +9,10 @@ edition = "2018"
crate-type = ["cdylib", "rlib"]
[dependencies]
eframe = { version = "0.6.0", path = "../eframe"}
egui_demo_lib = { version = "0.6.0", path = "../egui_demo_lib"}
serde = { version = "1", features = ["derive"] }
eframe = { version = "0.6.0", path = "../eframe", features = ["time"] }
egui_demo_lib = { version = "0.6.0", path = "../egui_demo_lib" }
[features]
default = []
http = ["eframe/http", "egui_demo_lib/http"]
persistence = ["eframe/persistence", "egui_demo_lib/persistence"]