From 1f1835bb688d63a53c7007b91578649b34f6a58e Mon Sep 17 00:00:00 2001 From: Nathan Adams Date: Thu, 4 Apr 2024 14:02:07 +0200 Subject: [PATCH] chore: Use workspace version for url --- Cargo.toml | 1 + core/Cargo.toml | 2 +- desktop/Cargo.toml | 2 +- frontend-utils/Cargo.toml | 2 +- tests/framework/Cargo.toml | 2 +- web/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 786fea4f014d8..12502c52feef2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,6 +68,7 @@ num-derive = "0.4.2" num-traits = "0.2.18" serde = "1.0.197" thiserror = "1.0" +url = "2.5.0" [workspace.lints.rust] # Clippy nightly often adds new/buggy lints that we want to ignore. diff --git a/core/Cargo.toml b/core/Cargo.toml index fbc32c4e26ac5..aa3808f34e5bc 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -31,7 +31,7 @@ num-traits = { workspace = true } num-derive = { workspace = true } quick-xml = "0.31.0" downcast-rs = "1.2.0" -url = "2.5.0" +url = { workspace = true } weak-table = "0.3.2" percent-encoding = "2.3.1" thiserror = { workspace = true } diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index 1d28ff5a5ab12..6f4a585d00097 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -30,7 +30,7 @@ tracing-appender = "0.2.3" slotmap = { workspace = true } winit = "0.29.15" webbrowser = "0.8.13" -url = "2.5.0" +url = { workspace = true } dirs = "5.0" isahc = { version = "1.7.2", features = ["cookies"] } rfd = "0.14.1" diff --git a/frontend-utils/Cargo.toml b/frontend-utils/Cargo.toml index 1034e1f2db7a3..15759c8ccd780 100644 --- a/frontend-utils/Cargo.toml +++ b/frontend-utils/Cargo.toml @@ -12,4 +12,4 @@ workspace = true [dependencies] toml_edit = { version = "0.22.9", features = ["parse"] } -url = "2.5.0" +url = { workspace = true } diff --git a/tests/framework/Cargo.toml b/tests/framework/Cargo.toml index b318f715e0f50..fd4c3fb9e4a52 100644 --- a/tests/framework/Cargo.toml +++ b/tests/framework/Cargo.toml @@ -18,7 +18,7 @@ ruffle_socket_format = { path = "../socket-format" } ruffle_video_software = { path = "../../video/software", optional = true } image = { workspace = true, features = ["png"] } regex = "1.10.4" -url = "2.5.0" +url = { workspace = true } chrono = { workspace = true } approx = "0.5.1" pretty_assertions = "1.4.0" diff --git a/web/Cargo.toml b/web/Cargo.toml index 79cc0c614a993..cc3c98cf83cd8 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -44,7 +44,7 @@ ruffle_render = { path = "../render" } ruffle_render_webgl = { path = "../render/webgl", optional = true } ruffle_render_wgpu = { path = "../render/wgpu", optional = true } ruffle_video_software = { path = "../video/software" } -url = "2.5.0" +url = { workspace = true } wasm-bindgen = "=0.2.92" wasm-bindgen-futures = "0.4.42" serde-wasm-bindgen = "0.6.5"