nit: Clean up Cargo.toml files slightly (remove unnecessary `version =` maps)

This commit is contained in:
TÖRÖK Attila 2023-10-10 00:51:05 +02:00
parent 0127c98fdf
commit 9506a66803
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
naga = { version = "0.13.0", features = ["validate", "wgsl-out"] } naga = { version = "0.13.0", features = ["validate", "wgsl-out"] }
naga_oil = "0.9.0" naga_oil = "0.9.0"
wgpu = { version = "0.17.1" } wgpu = "0.17.1"
egui = "0.23.0" egui = "0.23.0"
# Don't optimize build scripts and macros. # Don't optimize build scripts and macros.
@ -88,4 +88,4 @@ inherits = "release"
wgpu = { git = "https://github.com/ruffle-rs/wgpu", branch = "backport-shader-unconsumed" } wgpu = { git = "https://github.com/ruffle-rs/wgpu", branch = "backport-shader-unconsumed" }
[patch.'https://github.com/gfx-rs/naga'] [patch.'https://github.com/gfx-rs/naga']
naga = { version = "0.13.0" } naga = "0.13.0"

View File

@ -12,7 +12,7 @@ ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf"} swf = { path = "../swf"}
tracing = { workspace = true } tracing = { workspace = true }
gif = "0.12.0" gif = "0.12.0"
png = { version = "0.17.10" } png = "0.17.10"
flate2 = "1.0.27" flate2 = "1.0.27"
smallvec = { version = "1.11.1", features = ["union"] } smallvec = { version = "1.11.1", features = ["union"] }
downcast-rs = "1.2.0" downcast-rs = "1.2.0"