Skip to content

chore: Update rust dependencies #14772

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

Merged
merged 1 commit into from
Jan 16, 2024
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
334 changes: 186 additions & 148 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ruffle_macros = { path = "macros" }
ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf" }
bitflags = "2.4.1"
smallvec = { version = "1.11.2", features = ["union"] }
smallvec = { version = "1.12.0", features = ["union"] }
num-traits = "0.2"
num-derive = "0.4"
quick-xml = "0.31.0"
Expand All @@ -49,18 +49,18 @@ dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "s
symphonia = { version = "0.5.3", default-features = false, features = ["mp3"], optional = true }
enumset = "1.1.3"
bytemuck = "1.14.0"
clap = { version = "4.4.13", features = ["derive"], optional=true }
clap = { version = "4.4.17", features = ["derive"], optional=true }
realfft = "3.3.0"
hashbrown = { version = "0.14.3", features = ["raw"] }
scopeguard = "1.2.0"
fluent-templates = "0.8.0"
egui = { workspace = true, optional = true }
egui_extras = { version = "0.24.2", optional = true }
png = { version = "0.17.10", optional = true }
png = { version = "0.17.11", optional = true }
flv-rs = { path = "../flv" }
async-channel = "2.1.1"
jpegxr = { git = "https://github.com/ruffle-rs/jpegxr", branch = "ruffle", optional = true }
image = { version = "0.24.7", default-features = false, features = ["tiff", "dxt"] }
image = { version = "0.24.8", default-features = false, features = ["tiff", "dxt"] }
enum-map = "2.7.3"
ttf-parser = "0.20"

Expand Down
2 changes: 1 addition & 1 deletion core/build_playerglobal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ convert_case = "0.6.0"
proc-macro2 = "1.0.76"
quote = "1.0.35"
swf = { path = "../../swf" }
clap = {version = "4.4.13", features = ["derive"]}
clap = {version = "4.4.17", features = ["derive"]}
serde = {version = "1.0.195", features = ["derive"]}
serde-xml-rs = "0.6.0"
colored = "2.1.0"
Expand Down
6 changes: 3 additions & 3 deletions desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version.workspace = true
workspace = true

[dependencies]
clap = { version = "4.4.13", features = ["derive"] }
clap = { version = "4.4.17", features = ["derive"] }
cpal = "0.15.2"
egui = { workspace = true }
egui_extras = { version = "0.24.2", features = ["image"] }
Expand All @@ -32,7 +32,7 @@ url = "2.5.0"
arboard = { version = "3.3.0", features = ["wayland-data-control"] }
dirs = "5.0"
isahc = { version = "1.7.2", features = ["cookies"] }
rfd = "0.12.1"
rfd = "0.13.0"
anyhow = "1.0"
bytemuck = "1.14.0"
os_info = { version = "3", default-features = false }
Expand All @@ -55,7 +55,7 @@ winapi = "0.3.9"

[build-dependencies]
embed-resource = "2"
vergen = { version = "8.2.6", features = ["build", "git", "gitcl", "cargo"] }
vergen = { version = "8.2.10", features = ["build", "git", "gitcl", "cargo"] }

[features]
default = ["software_video"]
Expand Down
4 changes: 2 additions & 2 deletions exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ version.workspace = true
workspace = true

[dependencies]
clap = { version = "4.4.13", features = ["derive"] }
clap = { version = "4.4.17", features = ["derive"] }
futures = "0.3"
ruffle_core = { path = "../core", features = ["deterministic", "default_font"] }
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
image = { version = "0.24.7", default-features = false, features = ["png"] }
image = { version = "0.24.8", default-features = false, features = ["png"] }
log = "0.4"
walkdir = "2.4.0"
indicatif = "0.17"
Expand Down
8 changes: 4 additions & 4 deletions render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf"}
tracing = { workspace = true }
gif = "0.12.0"
png = "0.17.10"
png = "0.17.11"
flate2 = "1.0.28"
smallvec = { version = "1.11.2", features = ["union"] }
smallvec = { version = "1.12.0", features = ["union"] }
downcast-rs = "1.2.0"
lyon = { version = "1.0.1", optional = true }
lyon_geom = "1.0.5"
thiserror = "1.0"
wasm-bindgen = { version = "=0.2.90", optional = true }
enum-map = "2.7.3"
serde = { version = "1.0.195", features = ["derive"] }
clap = { version = "4.4.13", features = ["derive"], optional = true }
clap = { version = "4.4.17", features = ["derive"], optional = true }
h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "16700664e2b3334f0a930f99af86011aebee14cc"}
lru = "0.12.1"
num-traits = "0.2"
Expand All @@ -39,7 +39,7 @@ version = "0.11.0"
optional = true

[dependencies.jpeg-decoder]
version = "0.3.0"
version = "0.3.1"
default-features = false # can't use rayon on web

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions render/wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
bytemuck = { version = "1.14.0", features = ["derive"] }
raw-window-handle = "0.5.2"
clap = { version = "4.4.13", features = ["derive"], optional = true }
clap = { version = "4.4.17", features = ["derive"], optional = true }
enum-map = "2.7.3"
fnv = "1.0.7"
swf = { path = "../../swf" }
image = { version = "0.24.7", default-features = false }
image = { version = "0.24.8", default-features = false }
naga_oil = { workspace = true }
ouroboros = "0.18.2"
typed-arena = "2.0.2"
Expand Down
2 changes: 1 addition & 1 deletion scanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version.workspace = true
workspace = true

[dependencies]
clap = { version = "4.4.13", features = ["derive"] }
clap = { version = "4.4.17", features = ["derive"] }
ruffle_core = { path = "../core", features = ["deterministic"] }
log = "0.4"
walkdir = "2.4.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
[dev-dependencies]
ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
ruffle_test_framework = { path = "framework" }
libtest-mimic = "0.6.1"
libtest-mimic = "0.7.0"
walkdir = "2.4.0"
anyhow = "1.0.79"
image = { version = "0.24.7", default-features = false, features = ["png"] }
image = { version = "0.24.8", default-features = false, features = ["png"] }
futures = "0.3.30"

[[test]]
Expand Down
2 changes: 1 addition & 1 deletion tests/framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ruffle_render = { path = "../../render" }
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"] }
image = { version = "0.24.8", default-features = false, features = ["png"] }
regex = "1.10.2"
url = "2.5.0"
chrono = "0.4.31"
Expand Down
2 changes: 1 addition & 1 deletion tests/mocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workspace = true

[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.13", features = ["derive"] }
clap = { version = "4.4.17", features = ["derive"] }
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
ruffle_socket_format = { path = "../socket-format" }
5 changes: 2 additions & 3 deletions web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,11 @@ chrono = { version = "0.4", default-features = false, features = ["wasmbind", "c
getrandom = { version = "0.2", features = ["js"] }
serde = { version = "1.0.195", features = ["derive"] }
thiserror = "1.0"
base64 = "0.21.5"
base64 = "0.21.7"
async-channel = "2.1.1"
futures-util = { version = "0.3.30", features = ["sink"] }
gloo-net = { version = "0.5.0", default-features = false, features = ["websocket"] }
#TODO: change when fix released
rfd = { version = "0.12.1", features = ["file-handle-inner"] }
rfd = { version = "0.13.0", features = ["file-handle-inner"] }

[dependencies.ruffle_core]
path = "../core"
Expand Down