Compare commits

..

4 Commits

1
.gitignore vendored

@ -11,3 +11,4 @@
/url-2.4.0.crate /url-2.4.0.crate
/url-2.4.1.crate /url-2.4.1.crate
/url-2.5.0.crate /url-2.5.0.crate
/url-2.5.2.crate

@ -1,17 +1,22 @@
# Generated by rust2rpm 25 # Generated by rust2rpm 26
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate url %global crate url
Name: rust-url Name: rust-url
Version: 2.5.0 Version: 2.5.2
Release: %autorelease Release: %autorelease
Summary: URL library for Rust, based on the WHATWG URL Standard Summary: URL library for Rust, based on the WHATWG URL Standard
License: MIT OR Apache-2.0 License: MIT OR Apache-2.0
URL: https://crates.io/crates/url URL: https://crates.io/crates/url
Source: %{crates_source} Source: %{crates_source}
# Automatically generated patch to strip dependencies and normalize metadata
Patch: url-fix-metadata-auto.diff
# Manually created patch for downstream crate metadata changes
# * drop unused, benchmark-only bencher dev-dependency
Patch: url-fix-metadata.diff
BuildRequires: cargo-rpm-macros >= 24 BuildRequires: cargo-rpm-macros >= 24

@ -1,5 +1,8 @@
[package] [package]
summary = "URL library for Rust, based on the WHATWG URL Standard" summary = "URL library for Rust, based on the WHATWG URL Standard"
cargo-toml-patch-comments = [
"drop unused, benchmark-only bencher dev-dependency",
]
[features] [features]
hide = ["debugger_visualizer"] hide = ["debugger_visualizer"]

@ -1 +1 @@
SHA512 (url-2.5.0.crate) = 4aedbc48b85bcc2853189f5fe8265a01c76516b5507f4e958d8d0b860fe2590c69c95f0f4b9fd6fac9b8d5911bcb0a5e9ab7f8e8b600f37a12db1438976ee5c3 SHA512 (url-2.5.2.crate) = 2515903e41c0659cb226f9bb049ef80f2a49d1b609b6ac480e570a84e899088ffe3be4fb58f41a1fa7f5288eb5f97ab513f331aeb6d56979df783d48e2ace28a

@ -0,0 +1,8 @@
--- url-2.5.2/Cargo.toml 1970-01-01T00:00:01+00:00
+++ url-2.5.2/Cargo.toml 2024-09-14T19:38:56.029755+00:00
@@ -82,5 +82,3 @@
default = []
expose_internals = []
-[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))".dev-dependencies.wasm-bindgen-test]
-version = "0.3"

@ -0,0 +1,24 @@
--- url-2.5.2/Cargo.toml 1970-01-01T00:00:01+00:00
+++ url-2.5.2/Cargo.toml 2024-09-14T19:40:12.947182+00:00
@@ -48,11 +48,6 @@
path = "tests/wpt.rs"
harness = false
-[[bench]]
-name = "parse_url"
-path = "benches/parse_url.rs"
-harness = false
-
[dependencies.form_urlencoded]
version = "1.2.1"
@@ -67,9 +62,6 @@
features = ["derive"]
optional = true
-[dev-dependencies.bencher]
-version = "0.1"
-
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
Loading…
Cancel
Save