Skip to content

Commit

Permalink
Update Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rustbasic authored Aug 28, 2024
1 parent b4831c1 commit 67fd6dd
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,22 @@ workspace = true

[dependencies]
egui_plot = { workspace = true, features = ["serde"] }

egui = "0.28"
eframe = { version = "0.28", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }

# If you fork https://github.com/emilk/egui you can test with:
# egui_plot = { path = "../egui_plot", features = ["serde"] }
# egui = { path = "../../egui/crates/egui" }
# eframe = { path = "../../egui/crates/eframe", default-features = false, features = [
# "default_fonts", # Embed the default egui fonts.
# "glow", # Use the glow rendering backend. Alternative: "wgpu".
# "persistence", # Enable restoring app state when restarting the app.
# ] }

log = "0.4"
serde = { version = "1", features = ["derive"] }

Expand Down

0 comments on commit 67fd6dd

Please sign in to comment.