Skip to content

Commit

Permalink
fix(deps): update rust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and torokati44 committed Mar 1, 2024
1 parent a0f2941 commit a04ba7c
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 62 deletions.
105 changes: 52 additions & 53 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ flate2 = "1.0.28"
fnv = "1.0.7"
gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" }
generational-arena = "0.2.9"
indexmap = "2.2.3"
indexmap = "2.2.5"
tracing = { workspace = true }
ruffle_render = { path = "../render", features = ["tessellator"] }
ruffle_video = { path = "../video" }
Expand All @@ -42,11 +42,11 @@ rand = { version = "0.8.5", features = ["std", "small_rng"], default-features =
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
nellymoser-rs = { git = "https://github.com/ruffle-rs/nellymoser", rev = "4a33521c29a918950df8ae9fe07e527ac65553f5", optional = true }
regress = "0.8"
regress = "0.9"
flash-lso = { git = "https://github.com/ruffle-rs/rust-flash-lso", rev = "2f770555ea49c6db49c57c1dd46c7cc686e8dacc" }
lzma-rs = {version = "0.3.0", optional = true }
dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "signal"], optional = true }
symphonia = { version = "0.5.3", default-features = false, features = ["mp3"], optional = true }
symphonia = { version = "0.5.4", default-features = false, features = ["mp3"], optional = true }
enumset = "1.1.3"
bytemuck = "1.14.3"
clap = { version = "4.5.1", features = ["derive"], optional=true }
Expand Down
2 changes: 1 addition & 1 deletion core/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ proc-macro = true

[dependencies]
quote = "1.0.35"
syn = { version = "2.0.50", features = ["extra-traits", "full"] }
syn = { version = "2.0.52", features = ["extra-traits", "full"] }
1 change: 1 addition & 0 deletions core/src/avm2/regexp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ impl<'gc> RegExp<'gc> {
dot_all: self.flags.contains(RegExpFlags::DOTALL),
no_opt: false,
unicode: false,
unicode_sets: false,
},
);
self.cached_regex = Some(re.map_err(drop));
Expand Down
2 changes: 1 addition & 1 deletion exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ image = { version = "0.24.9", default-features = false, features = ["png"] }
log = "0.4"
walkdir = "2.4.0"
indicatif = "0.17"
rayon = "1.8.1"
rayon = "1.9.0"
anyhow = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ num-traits = "0.2"
num-derive = "0.4"
byteorder = "1.5"
wgpu = { workspace = true, optional = true }
indexmap = "2.2.3"
indexmap = "2.2.5"

# This crate has a `compile_error!` on apple platforms
[target.'cfg(not(target_vendor = "apple"))'.dependencies.renderdoc]
Expand Down
2 changes: 1 addition & 1 deletion render/wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ downcast-rs = "1.2.0"
profiling = { version = "1.0", default-features = false, optional = true }
lru = "0.12.3"
naga = { workspace = true }
indexmap = "2.2.3"
indexmap = "2.2.5"

# desktop
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
Expand Down
2 changes: 1 addition & 1 deletion scanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ csv = "1.3"
indicatif = "0.17"
path-slash = "0.2.1"
swf = { path = "../swf" }
rayon = "1.8.1"
rayon = "1.9.0"
crossbeam-channel = "0.5"
sha2 = "0.10.8"
2 changes: 1 addition & 1 deletion web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ruffle_video_software = { path = "../video/software" }
url = "2.5.0"
wasm-bindgen = "=0.2.91"
wasm-bindgen-futures = "0.4.40"
serde-wasm-bindgen = "0.6.4"
serde-wasm-bindgen = "0.6.5"
chrono = { version = "0.4", default-features = false, features = ["wasmbind", "clock"] }
getrandom = { version = "0.2", features = ["js"] }
serde = { version = "1.0.197", features = ["derive"] }
Expand Down

0 comments on commit a04ba7c

Please sign in to comment.