Skip to content

Commit 4927a5a

Browse files
committed
update examples to egui 0.33
1 parent 551f898 commit 4927a5a

File tree

7 files changed

+18
-43
lines changed

7 files changed

+18
-43
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ bevy_ecs = { version = "0.17", default-features = false }
190190
bevy_reflect = { version = "0.17", default-features = false }
191191
num-traits = { version = "0.2", default-features = false }
192192
serde = { version = "1", features = ["derive"] }
193+
egui = "0.33.3"
194+
eframe = "0.33.3"
193195

194196
[dependencies]
195197
firewheel-core = { path = "crates/firewheel-core", version = "0.10.0", default-features = false }

examples/custom_nodes/Cargo.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ firewheel = { path = "../../" }
1414
bevy_platform.workspace = true
1515
tracing.workspace = true
1616
tracing-subscriber.workspace = true
17-
egui = "0.32"
18-
eframe = { version = "0.32", default-features = false, features = [
19-
"default_fonts",
20-
"glow",
21-
"x11",
22-
"wayland",
23-
] }
17+
egui.workspace = true
18+
eframe.workspace = true
19+
20+
[target.'cfg(target_arch = "wasm32")'.dependencies]
21+
wasm-bindgen-futures = "0.4"

examples/sampler_pool/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,8 @@ publish = false
1010
firewheel = { path = "../../", features = ["pool", "scheduled_events"] }
1111
tracing.workspace = true
1212
tracing-subscriber.workspace = true
13-
egui = "0.32"
14-
eframe = { version = "0.32", default-features = false, features = [
15-
"default_fonts",
16-
"glow",
17-
"x11",
18-
"wayland",
19-
] }
13+
egui.workspace = true
14+
eframe.workspace = true
2015
symphonium = { version = "0.6.5", features = ["mp3", "flac"] }
2116

2217
[target.'cfg(target_arch = "wasm32")'.dependencies]

examples/sampler_test/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@ publish = false
88
firewheel = { path = "../../", features = ["peak_meter_node"] }
99
tracing.workspace = true
1010
tracing-subscriber.workspace = true
11-
egui = "0.32"
12-
eframe = { version = "0.32", default-features = false, features = [
13-
"default_fonts",
14-
"glow",
15-
"x11",
16-
"wayland",
17-
] }
11+
egui.workspace = true
12+
eframe.workspace = true
1813
symphonium = { version = "0.6.5", features = ["mp3", "flac"] }
1914

2015
[target.'cfg(target_arch = "wasm32")'.dependencies]

examples/spatial_basic/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@ publish = false
88
firewheel = { path = "../../", features = ["spatial_basic_node"] }
99
tracing.workspace = true
1010
tracing-subscriber.workspace = true
11-
egui = "0.32"
12-
eframe = { version = "0.32", default-features = false, features = [
13-
"default_fonts",
14-
"glow",
15-
"x11",
16-
"wayland",
17-
] }
11+
egui.workspace = true
12+
eframe.workspace = true
1813
symphonium = { version = "0.6.5", features = ["mp3", "flac"] }
1914

2015
[target.'cfg(target_arch = "wasm32")'.dependencies]

examples/visual_node_graph/Cargo.toml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,9 @@ publish = false
88
firewheel = { path = "../../", features = ["all_nodes"] }
99
tracing.workspace = true
1010
tracing-subscriber.workspace = true
11-
egui = "0.32"
12-
egui-snarl = "0.8"
13-
eframe = { version = "0.32", default-features = false, features = [
14-
"default_fonts",
15-
"glow",
16-
"x11",
17-
"wayland",
18-
] }
11+
egui.workspace = true
12+
eframe.workspace = true
13+
egui-snarl = "0.9.0"
1914
symphonium = { version = "0.6.4", features = ["mp3", "flac"] }
2015

2116
[target.'cfg(target_arch = "wasm32")'.dependencies]

examples/visualizer/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@ publish = false
88
firewheel = { path = "../../", features = ["triple_buffer_node"] }
99
tracing.workspace = true
1010
tracing-subscriber.workspace = true
11-
egui = "0.32"
12-
eframe = { version = "0.32", default-features = false, features = [
13-
"default_fonts",
14-
"glow",
15-
"x11",
16-
"wayland",
17-
] }
11+
egui.workspace = true
12+
eframe.workspace = true
1813
symphonium = { version = "0.6.5", features = ["mp3", "flac"] }
1914

2015
[target.'cfg(target_arch = "wasm32")'.dependencies]

0 commit comments

Comments
 (0)