1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 06:10:06 -04:00

Break out plotting to own crate egui_plot (#3282)

This replaces `egui::plot` with the new crate `egui_plot`
This commit is contained in:
Emil Ernerfeldt
2023-08-27 17:22:49 +02:00
committed by GitHub
parent 87f12d782e
commit 7b169ec13d
30 changed files with 134 additions and 57 deletions

11
Cargo.lock generated
View File

@@ -1246,6 +1246,7 @@ dependencies = [
"document-features",
"egui",
"egui_extras",
"egui_plot",
"enum-map",
"log",
"serde",
@@ -1287,6 +1288,15 @@ dependencies = [
"web-sys",
]
[[package]]
name = "egui_plot"
version = "0.22.0"
dependencies = [
"document-features",
"egui",
"serde",
]
[[package]]
name = "ehttp"
version = "0.2.0"
@@ -3128,6 +3138,7 @@ name = "save_plot"
version = "0.1.0"
dependencies = [
"eframe",
"egui_plot",
"env_logger",
"image",
"rfd",