chore: Use workspace version for bytemuck

This commit is contained in:
Nathan Adams 2024-04-04 13:32:57 +02:00
parent 4e3cd75c30
commit 937664e737
5 changed files with 5 additions and 4 deletions

View File

@ -56,6 +56,7 @@ anyhow = "1.0"
slotmap = "1.0.7"
async-channel = "2.2.0"
bitflags = "2.5.0"
bytemuck = "1.15.0"
[workspace.lints.rust]
# Clippy nightly often adds new/buggy lints that we want to ignore.

View File

@ -48,7 +48,7 @@ lzma-rs = {version = "0.3.0", optional = true }
dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "signal"], optional = true }
symphonia = { version = "0.5.4", default-features = false, features = ["mp3"], optional = true }
enumset = "1.1.3"
bytemuck = "1.15.0"
bytemuck = { workspace = true }
clap = { version = "4.5.4", features = ["derive"], optional=true }
realfft = "3.3.0"
hashbrown = { version = "0.14.3", features = ["raw"] }

View File

@ -35,7 +35,7 @@ dirs = "5.0"
isahc = { version = "1.7.2", features = ["cookies"] }
rfd = "0.14.1"
anyhow = { workspace = true }
bytemuck = "1.15.0"
bytemuck = { workspace = true }
os_info = { version = "3", default-features = false }
unic-langid = "0.9.4"
sys-locale = "0.3.1"

View File

@ -16,7 +16,7 @@ log = "0.4"
ruffle_web_common = { path = "../../web/common" }
ruffle_render = { path = "..", features = ["tessellator", "web"] }
wasm-bindgen = "=0.2.92"
bytemuck = { version = "1.15.0", features = ["derive"] }
bytemuck = { workspace = true, features = ["derive"] }
swf = { path = "../../swf" }
thiserror = "1.0"

View File

@ -14,7 +14,7 @@ workspace = true
wgpu = { workspace = true, features = ["naga-ir"] }
tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
bytemuck = { version = "1.15.0", features = ["derive"] }
bytemuck = { workspace = true, features = ["derive"] }
clap = { version = "4.5.4", features = ["derive"], optional = true }
enum-map = "2.7.3"
fnv = "1.0.7"