Skip to content

Commit

Permalink
update many deps
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDavenport committed Apr 23, 2024
1 parent 00d439b commit 8d31ea0
Show file tree
Hide file tree
Showing 9 changed files with 1,454 additions and 1,442 deletions.
2,830 changes: 1,421 additions & 1,409 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions gamercade_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ path = "src/main.rs"
[dependencies]
gamercade_interface = { path = "../gamercade_interface" }

rfd = "0.11.3"
rfd = "0.14.1"
radix_fmt = "1.0.0"
bytemuck = "1.15.0"

tokio = { version = "1.28.1", features = ["full"] }
tokio-stream = "0.1.14"
tonic = "0.10.2"
reqwest = "0.12.3"
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = "0.1.15"
tonic = "0.11.0"
reqwest = "0.12.4"

eframe = "0.27.2"
egui_extras = {version = "0.27.2", features = ["all_loaders"] }
rusqlite = { version = "0.30.0", features = ["bundled"] }
rusqlite = { version = "0.31.0", features = ["bundled"] }
hashbrown = "0.14.3"
nohash-hasher = "0.2.0"
image = "0.25.1"
4 changes: 2 additions & 2 deletions gamercade_audio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository = "https://github.com/gamercade-io/gamercade_audio"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.163", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"] }
serde = { version = "1.0.198", features = ["derive"] }
strum = { version = "0.26.2", features = ["derive"] }
arrayvec = { version = "0.7.4", features = ["serde"] }
tinystr = "0.7.5"
rtrb = "0.3.0"
Expand Down
16 changes: 8 additions & 8 deletions gamercade_console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ gamercade_interface = { path = "../gamercade_interface" }
hashbrown = { version = "0.14.3", features = ["serde"] }
parking_lot = "0.12.1"

# Windowing & Graphics
# Windowing & Graphics TODO Update These
winit = { version = "0.28.6", features = ["serde"] }
pixels = "0.12.1"
winit_input_helper = "0.14.1"

# GUI Stuff
# GUI Stuff TODO Update These
egui = "0.21.0"
egui-wgpu = "0.21.0"
egui-winit = { version = "0.21.1", default-features = false, features = ["links"] }
Expand All @@ -35,24 +35,24 @@ egui-winit = { version = "0.21.1", default-features = false, features = ["links"
paste = "1.0.14"

# Serialization / File Loading etc
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
bytemuck = "1.15.0"

# Scripting
wasmtime = "19.0.1"
wasmtime = "20.0.0"

# Random
# Random TODO Update This
fastrand = "1.9.0"

# Audio
cpal = "0.15.3"

# Networking
ggrs = "0.10.0"
ggrs = "0.10.2"

# File Picker Dialog
rfd = "0.11.3"
rfd = "0.14.1"

# Input
gilrs = "0.10.2"
Expand Down
6 changes: 3 additions & 3 deletions gamercade_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository = "https://github.com/gamercade-io/gamercade_rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.163", features = ["derive"] }
serde = { version = "1.0.198", features = ["derive"] }
serde-big-array = "0.5.1"
base64 = "0.21.0"
base64 = "0.22.0"
bytemuck = { version = "1.15.0", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"] }
strum = { version = "0.26.2", features = ["derive"] }
10 changes: 5 additions & 5 deletions gamercade_editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ gamercade_audio = { path = "../gamercade_audio" }
gamercade_sound_engine = { path = "../gamercade_sound_engine" }

# Serialization
serde = { version = "1.0.163", features = ["derive"] }
serde = { version = "1.0.198", features = ["derive"] }

# Window and Rendering
eframe = "0.22.0"

# File Dialogs
rfd = "0.11.3"
rfd = "0.14.1"

# Image Manipulation
image = "0.24.6"
image = "0.25.1"

# General Improvements
hashbrown = "0.14.3"
tinystr = "0.7.1"
tinystr = "0.7.5"

# Audio Things
rtrb = "0.3.0"
hound = "3.5.0"
hound = "3.5.1"
6 changes: 3 additions & 3 deletions gamercade_fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ gamercade_audio = { path = "../gamercade_audio" }
gamercade_sound_engine = { path = "../gamercade_sound_engine" }
gamercade_core = { path = "../gamercade_core" }

serde = { version = "1.0.163", features = ["derive"] }
serde = { version = "1.0.198", features = ["derive"] }
bincode = "1.3.3"
serde_json = "1.0.96"
zstd = "0.12.3"
serde_json = "1.0.116"
zstd = "0.13.1"
base64 = "0.22.0"
bytemuck = "1.15.0"
10 changes: 5 additions & 5 deletions gamercade_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/gamercade-io/gamercade_interface"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tonic = "0.10.2"
prost = "0.12.3"
serde = { version = "1.0.163", features = ["derive"] }
crc = "3.2.0"
tonic = "0.11.0"
prost = "0.12.4"
serde = { version = "1.0.198", features = ["derive"] }
crc = "3.2.1"

[build-dependencies]
tonic-build = "0.10.2"
tonic-build = "0.11.0"
2 changes: 1 addition & 1 deletion gamercade_sound_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ arrayvec = { version = "0.7.4", features = ["serde"] }
rtrb = "0.3.0"

# for .wav
hound = "3.5.0"
hound = "3.5.1"

0 comments on commit 8d31ea0

Please sign in to comment.