chore: Use workspace version for thiserror

This commit is contained in:
Nathan Adams 2024-04-04 14:01:11 +02:00
parent 9d665ce448
commit 45a2ab69c0
8 changed files with 8 additions and 7 deletions

View File

@ -67,6 +67,7 @@ log = "0.4"
num-derive = "0.4.2"
num-traits = "0.2.18"
serde = "1.0.197"
thiserror = "1.0"
[workspace.lints.rust]
# Clippy nightly often adds new/buggy lints that we want to ignore.

View File

@ -34,7 +34,7 @@ downcast-rs = "1.2.0"
url = "2.5.0"
weak-table = "0.3.2"
percent-encoding = "2.3.1"
thiserror = "1.0"
thiserror = { workspace = true }
chrono = { workspace = true, features = ["clock"] }
web-time = "0.2.4"
encoding_rs = "0.8.33"

View File

@ -7,4 +7,4 @@ license = "MIT OR Apache-2.0"
[dependencies]
bitflags = { workspace = true }
thiserror = "1.0"
thiserror = { workspace = true }

View File

@ -21,7 +21,7 @@ smallvec = { version = "1.13.2", features = ["union"] }
downcast-rs = "1.2.0"
lyon = { version = "1.0.1", optional = true }
lyon_geom = "1.0.5"
thiserror = "1.0"
thiserror = { workspace = true }
wasm-bindgen = { version = "=0.2.92", optional = true }
enum-map = { workspace = true }
serde = { workspace = true, features = ["derive"] }

View File

@ -18,7 +18,7 @@ ruffle_render = { path = "..", features = ["tessellator", "web"] }
wasm-bindgen = "=0.2.92"
bytemuck = { workspace = true, features = ["derive"] }
swf = { path = "../../swf" }
thiserror = "1.0"
thiserror = { workspace = true }
[dependencies.web-sys]
version = "0.3.69"

View File

@ -14,7 +14,7 @@ workspace = true
swf = { path = "../swf" }
ruffle_render = { path = "../render" }
slotmap = { workspace = true }
thiserror = "1.0"
thiserror = { workspace = true }
[features]
default = []

View File

@ -15,7 +15,7 @@ ruffle_render = { path = "../../render" }
ruffle_video = { path = ".." }
swf = { path = "../../swf" }
slotmap = { workspace = true }
thiserror = "1.0"
thiserror = { workspace = true }
flate2 = { workspace = true }
log = { workspace = true }

View File

@ -51,7 +51,7 @@ serde-wasm-bindgen = "0.6.5"
chrono = { workspace = true, features = ["wasmbind", "clock"] }
getrandom = { version = "0.2", features = ["js"] }
serde = { workspace = true, features = ["derive"] }
thiserror = "1.0"
thiserror = { workspace = true }
base64 = "0.22.0"
async-channel = { workspace = true }
futures-util = { version = "0.3.30", features = ["sink"] }