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 Aug 21, 2023
1 parent 89cc0eb commit 4e8b1f7
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 31 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ chrono = { version = "0.4", default-features = false, features = ["clock"] }
instant = "0.1"
encoding_rs = "0.8.32"
rand = { version = "0.8.5", features = ["std", "small_rng"], default-features = false }
serde = { version = "1.0.183", features = ["derive"] }
serde = { version = "1.0.184", 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.6"
Expand All @@ -46,7 +46,7 @@ dasp = { git = "https://github.com/RustAudio/dasp", rev = "f05a703", features =
symphonia = { version = "0.5.3", default-features = false, features = ["mp3"], optional = true }
enumset = "1.1.2"
bytemuck = "1.13.1"
clap = { version = "4.3.22", features = ["derive"], optional=true }
clap = { version = "4.3.23", features = ["derive"], optional=true }
realfft = "3.3.0"
hashbrown = { version = "0.14.0", features = ["raw"] }
scopeguard = "1.2.0"
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 @@ -12,8 +12,8 @@ convert_case = "0.6.0"
proc-macro2 = "1.0.66"
quote = "1.0.33"
swf = { path = "../../swf" }
clap = {version = "4.3.22", features = ["derive"]}
serde = {version = "1.0.183", features = ["derive"]}
clap = {version = "4.3.23", features = ["derive"]}
serde = {version = "1.0.184", features = ["derive"]}
serde-xml-rs = "0.6.0"
colored = "2.0.4"
regex = "1.9.3"
Expand Down
2 changes: 1 addition & 1 deletion desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
version.workspace = true

[dependencies]
clap = { version = "4.3.22", features = ["derive"] }
clap = { version = "4.3.23", features = ["derive"] }
cpal = "0.15.2"
egui = "0.22.0"
egui-wgpu = { version = "0.22.0", features = ["winit"] }
Expand Down
2 changes: 1 addition & 1 deletion exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
version.workspace = true

[dependencies]
clap = { version = "4.3.22", features = ["derive"] }
clap = { version = "4.3.23", features = ["derive"] }
futures = "0.3"
ruffle_core = { path = "../core", features = ["deterministic"] }
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
Expand Down
4 changes: 2 additions & 2 deletions render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ lyon = { version = "1.0.1", optional = true }
thiserror = "1.0"
wasm-bindgen = { version = "=0.2.87", optional = true }
enum-map = "2.6.1"
serde = { version = "1.0.183", features = ["derive"] }
clap = { version = "4.3.22", features = ["derive"], optional = true }
serde = { version = "1.0.184", features = ["derive"] }
clap = { version = "4.3.23", features = ["derive"], optional = true }
h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "128cdbd85455d19783c88927bb535e8a26fe5220"}
lru = "0.11.0"
num-traits = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion render/wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
bytemuck = { version = "1.13.1", features = ["derive"] }
raw-window-handle = "0.5"
clap = { version = "4.3.22", features = ["derive"], optional = true }
clap = { version = "4.3.23", features = ["derive"], optional = true }
enum-map = "2.6.1"
fnv = "1.0.7"
swf = { path = "../../swf" }
Expand Down
2 changes: 1 addition & 1 deletion scanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
version.workspace = true

[dependencies]
clap = { version = "4.3.22", features = ["derive"] }
clap = { version = "4.3.23", features = ["derive"] }
ruffle_core = { path = "../core", features = ["deterministic"] }
log = "0.4"
walkdir = "2.3.3"
Expand Down
6 changes: 3 additions & 3 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.6", default-features = false, features = ["png"] }
image = { version = "0.24.7", default-features = false, features = ["png"] }
regex = "1.9.3"
url = "2.4.0"

Expand All @@ -32,11 +32,11 @@ pretty_assertions = "1.4.0"
env_logger = "0.10.0"
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
serde = "1.0.183"
serde = "1.0.184"
toml = "0.7.6"
libtest-mimic = "0.6.1"
walkdir = "2.3.3"
anyhow = "1.0.72"
anyhow = "1.0.75"
async-channel = "1.9.0"

[[test]]
Expand Down
6 changes: 3 additions & 3 deletions tests/input-format/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ repository.workspace = true
version.workspace = true

[dependencies]
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
bitflags = "2.3.3"
serde = { version = "1.0.184", features = ["derive"] }
serde_json = "1.0.105"
bitflags = "2.4.0"
4 changes: 2 additions & 2 deletions tests/mocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ repository.workspace = true
version.workspace = true

[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.21", features = ["derive"] }
anyhow = "1.0.75"
clap = { version = "4.3.23", features = ["derive"] }
tracing = { workspace = true}
tracing-subscriber = { workspace = true }
ruffle_socket_format = { path = "../socket-format" }
4 changes: 2 additions & 2 deletions tests/socket-format/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ repository.workspace = true
version.workspace = true

[dependencies]
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
serde = { version = "1.0.184", features = ["derive"] }
serde_json = "1.0.105"
2 changes: 1 addition & 1 deletion web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ wasm-bindgen-futures = "0.4.37"
serde-wasm-bindgen = "0.5.0"
chrono = { version = "0.4", default-features = false, features = ["wasmbind", "clock"] }
getrandom = { version = "0.2", features = ["js"] }
serde = { version = "1.0.183", features = ["derive"] }
serde = { version = "1.0.184", features = ["derive"] }
thiserror = "1.0"
base64 = "0.21.2"
async-channel = "1.9.0"
Expand Down

0 comments on commit 4e8b1f7

Please sign in to comment.