Skip to content

Commit 24d8aad

Browse files
committed
chore: pass clippy across all features; deps: update minor versions; examples: remove inspector plugin usage
1 parent 6a464b7 commit 24d8aad

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@ inspect = ["bevy-inspector-egui"]
2222

2323

2424
[dependencies]
25-
async-std = { version = "1.12.0" }
26-
bevy = { version = "0.17.0", default-features = false, features = ["bevy_log"] }
27-
bytes = "1.6.0"
28-
kanal = "0.1.0-pre8"
29-
futures = "0.3.30"
30-
serde = { version = "1.0.198", features = ["derive"] }
31-
thiserror = { version = "1.0.59" }
25+
async-std = { version = "1.13.2" }
26+
bevy = { version = "0.17.1", default-features = false, features = ["bevy_log"] }
27+
bytes = "1.10.1"
28+
kanal = "0.1.1"
29+
futures = "0.3.31"
30+
serde = { version = "1.0.228", features = ["derive"] }
31+
thiserror = { version = "1.0.69" }
3232

3333
bincode = { version = "1.3.3", optional = true }
34-
serde_json = { version = "1.0.68", optional = true }
35-
bevy-inspector-egui = { version = "0.26.0", optional = true }
34+
serde_json = { version = "1.0.145", optional = true }
35+
bevy-inspector-egui = { version = "0.34.0", optional = true }
3636

3737

3838

3939
[dev-dependencies]
40-
bevy = { version = "0.17.0", default-features = false, features = [
40+
bevy = { version = "0.17.1", default-features = false, features = [
4141
"bevy_asset",
4242
"bevy_audio",
4343
"vorbis",

bevy_octopus_websocket/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ documentation = "https://docs.rs/bevy_octopus_websocket"
1818

1919
[dependencies]
2020
bevy_octopus = { version = "*", path = ".." }
21-
bevy = { version = "0.17.0", default-features = false, features = [] }
22-
async-std = "1.12.0"
21+
bevy = { version = "0.17.1", default-features = false, features = [] }
22+
async-std = "1.13.2"
2323
async-tungstenite = { version = "0.27.0", features = ["async-std-runtime", "async-tls"] }
2424
tungstenite = "0.23.0"
25-
bytes = "1.6.0"
26-
futures = "0.3.30"
27-
kanal = "0.1.0-pre8"
25+
bytes = "1.10.1"
26+
futures = "0.3.31"
27+
kanal = "0.1.1"
2828

2929

3030

3131

3232
[dev-dependencies]
33-
serde = { version = "1.0.130", features = ["serde_derive"] }
33+
serde = { version = "1.0.228", features = ["serde_derive"] }
3434
bevy_octopus = { version = "*", path = "..", features = ["serde_json", "bincode"] }
3535

3636
[[example]]

examples/common/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ pub fn shared_setup(app: &mut App) {
3232
filter: "bevy_octopus=debug".to_string(),
3333
..default()
3434
}))
35-
.add_plugins(bevy_inspector_egui::quick::WorldInspectorPlugin::default())
3635
.add_plugins(OctopusPlugin)
3736
.add_observer(on_node_event);
3837
}

0 commit comments

Comments
 (0)