Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust dependencies #13487

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
195 changes: 85 additions & 110 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version.workspace = true

[dependencies]
linkme = { version = "0.3", optional = true }
byteorder = "1.4"
byteorder = "1.5"
bitstream-io = "1.7.0"
flate2 = "1.0.27"
fnv = "1.0.7"
Expand Down
4 changes: 2 additions & 2 deletions core/build_playerglobal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ version.workspace = true

[dependencies]
convert_case = "0.6.0"
proc-macro2 = "1.0.67"
proc-macro2 = "1.0.69"
quote = "1.0.33"
swf = { path = "../../swf" }
clap = {version = "4.4.6", features = ["derive"]}
serde = {version = "1.0.188", features = ["derive"]}
serde-xml-rs = "0.6.0"
colored = "2.0.4"
regex = "1.9.6"
regex = "1.10.0"
walkdir = "2.4.0"
2 changes: 1 addition & 1 deletion core/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ proc-macro = true

[dependencies]
quote = "1.0.33"
syn = { version = "2.0.37", features = ["extra-traits", "full"] }
syn = { version = "2.0.38", features = ["extra-traits", "full"] }
2 changes: 1 addition & 1 deletion render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "16700664e2b
lru = "0.12.0"
num-traits = "0.2"
num-derive = "0.4"
byteorder = "1.4"
byteorder = "1.5"
wgpu = { workspace = true, optional = true }

# This crate has a `compile_error!` on apple platforms
Expand Down
4 changes: 2 additions & 2 deletions render/naga-agal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ version.workspace = true
[dependencies]
bitflags = "2.4.0"
naga = { workspace = true }
num-derive = "0.4.0"
num-traits = "0.2.16"
num-derive = "0.4.1"
num-traits = "0.2.17"

[dev-dependencies]
insta = "1.33.0"
Expand Down
2 changes: 1 addition & 1 deletion render/wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ wgpu = { workspace = true, features = ["naga"] }
tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
bytemuck = { version = "1.14.0", features = ["derive"] }
raw-window-handle = "0.5"
raw-window-handle = "0.5.2"
clap = { version = "4.4.6", features = ["derive"], optional = true }
enum-map = "2.6.3"
fnv = "1.0.7"
Expand Down
2 changes: 1 addition & 1 deletion swf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository.workspace = true
[dependencies]
bitflags = "2.4.0"
bitstream-io = "1.7.0"
byteorder = "1.4"
byteorder = "1.5"
encoding_rs = "0.8.33"
num-derive = "0.4"
num-traits = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ruffle_input_format = { path = "input-format" }
ruffle_socket_format = { path = "socket-format" }
ruffle_video_software = { path = "../video/software", optional = true }
image = { version = "0.24.7", default-features = false, features = ["png"] }
regex = "1.9.6"
regex = "1.10.0"
url = "2.4.1"

[features]
Expand Down