Skip to content

Commit 725b25f

Browse files
authored
Merge pull request #159 from Jupeyy/pr_client_improvements17
Some improvements
2 parents 8a38de8 + 5edd547 commit 725b25f

File tree

131 files changed

+547
-441
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+547
-441
lines changed

Cargo.lock

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -240,20 +240,20 @@ ghost = { path = "game/ghost" }
240240
legacy-proxy = { path = "game/legacy-proxy" }
241241
prediction-timer = { path = "game/prediction-timer" }
242242

243-
anyhow = { version = "1.0.99", features = ["backtrace"] }
243+
anyhow = { version = "1.0.100", features = ["backtrace"] }
244244
arrayvec = "0.7.6"
245245
bincode = { version = "2.0.1", features = ["serde"] }
246246
bytes = "1.10.1"
247-
chrono = { version = "0.4.41", features = ["serde"] }
247+
chrono = { version = "0.4.42", features = ["serde"] }
248248
crossbeam = "0.8.4"
249-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
250-
egui-winit = { version = "0.32.2", default-features = false, features = [
249+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }
250+
egui-winit = { version = "0.32.3", default-features = false, features = [
251251
"x11",
252252
"arboard",
253253
"links",
254254
] }
255-
egui_extras = { version = "0.32.2" }
256-
emath = "0.32.2"
255+
egui_extras = { version = "0.32.3" }
256+
emath = "0.32.3"
257257
env_logger = "0.11.8"
258258
fixed = "1.29.0"
259259
hashlink = { git = "https://github.com/Jupeyy/hashlink/", branch = "ddnet", features = [
@@ -263,21 +263,21 @@ hashlink = { git = "https://github.com/Jupeyy/hashlink/", branch = "ddnet", feat
263263
hiarc = { path = "lib/hiarc", features = ["derive"] }
264264
log = "0.4.28"
265265
num = "0.4.3"
266-
parking_lot = "0.12.4"
266+
parking_lot = "0.12.5"
267267
rand = { version = "0.9.2", features = ["std_rng"], default-features = false }
268268
rayon = "1.11.0"
269-
serde = "1.0.219"
269+
serde = "1.0.228"
270270
serde-value = "0.7.0"
271-
serde_json = "1.0.143"
271+
serde_json = "1.0.145"
272272
thread-priority = "3.0.0"
273-
tokio = { version = "1.47.1", features = [
273+
tokio = { version = "1.48.0", features = [
274274
"rt-multi-thread",
275275
"sync",
276276
"fs",
277277
"time",
278278
"macros",
279279
] }
280-
tracing = { version = "0.1.40", default-features = false, features = [
280+
tracing = { version = "0.1.41", default-features = false, features = [
281281
"attributes",
282282
] }
283283
trybuild = "1.0"
@@ -292,14 +292,14 @@ alloc-track = { version = "0.3.1", optional = true }
292292
stats_alloc = { version = "0.1.10", optional = true }
293293

294294
[target.'cfg(not(target_os = "android"))'.dependencies]
295-
native-dialog = "0.9.0"
295+
native-dialog = "0.9.2"
296296

297297
[target.'cfg(target_os = "android")'.dependencies]
298298
android_logger = "0.15.1"
299299
ndk = { version = "0.9.0", default-features = false }
300300

301301
[target.'cfg(target_arch = "wasm32")'.dependencies]
302-
tracing = { version = "0.1.40", default-features = false, features = [
302+
tracing = { version = "0.1.41", default-features = false, features = [
303303
"max_level_off",
304304
"release_max_level_off",
305305
] }

data

Submodule data updated 76 files

examples/lib-modules/editor-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ config = { path = "../../../lib/config" }
1414
graphics = { path = "../../../lib/graphics" }
1515
sound = { path = "../../../lib/sound" }
1616

17-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
17+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }
1818
once_cell = "1.21.3"
1919
rayon = "1.11.0"

examples/wasm-modules/actionfeed/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ client-types = { path = "../../../game/client-types" }
2121
client-ui = { path = "../../../game/client-ui" }
2222
game-interface = { path = "../../../game/game-interface" }
2323

24-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
24+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }
2525
num-traits = "0.2.19"

examples/wasm-modules/chat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ client-ui = { path = "../../../game/client-ui" }
2222
game-base = { path = "../../../game/game-base" }
2323
game-interface = { path = "../../../game/game-interface" }
2424

25-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
25+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }

examples/wasm-modules/connecting/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ ui-generic = { path = "../../../lib/ui-generic" }
1414
api-ui-game = { path = "../../../game/api-ui-game" }
1515
client-ui = { path = "../../../game/client-ui" }
1616

17-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
17+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }

examples/wasm-modules/console/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ client-render-base = { path = "../../../game/client-render-base" }
1919
client-types = { path = "../../../game/client-types" }
2020
client-ui = { path = "../../../game/client-ui" }
2121

22-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
22+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }

examples/wasm-modules/demo_player/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ ui-generic = { path = "../../../lib/ui-generic" }
1616
api-ui-game = { path = "../../../game/api-ui-game" }
1717
client-ui = { path = "../../../game/client-ui" }
1818

19-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
19+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }

examples/wasm-modules/emote_wheel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ client-containers = { path = "../../../game/client-containers" }
1818
client-render-base = { path = "../../../game/client-render-base" }
1919
client-ui = { path = "../../../game/client-ui" }
2020

21-
egui = { version = "0.32.2", default-features = false, features = ["serde"] }
21+
egui = { version = "0.32.3", default-features = false, features = ["serde"] }

0 commit comments

Comments
 (0)