gnu: rust-url-2: Update to 2.3.1.

* gnu/packages/crates-io.scm (rust-url-2): Update to 2.3.1.
[arguments]: Don't skip build.
[cargo-inputs]: Replace rust-idna-0.2 with 0.3. Remove rust-matches-0.1.
[cargo-development-inputs]: Remove rust-rustc-test-0.3. Add
rust-debugger-test-0.1, rust-debugger-test-parser-0.1.
This commit is contained in:
Efraim Flashner 2022-09-28 20:06:42 +03:00
parent 7298371ca2
commit 97666b13d5
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -70830,7 +70830,7 @@ (define-public rust-ureq-1
(define-public rust-url-2
(package
(name "rust-url")
(version "2.2.2")
(version "2.3.1")
(source
(origin
(method url-fetch)
@ -70839,19 +70839,18 @@ (define-public rust-url-2
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"132pzpvfvpw33gjlzqd55n5iag9qddzffq8qbp1myfykna1w61x5"))))
"0hs67jw257y0a7mj2p9wi0n61x8fc2vgwxg37y62nxkmmscwfs0d"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
`(#:cargo-inputs
(("rust-form-urlencoded" ,rust-form-urlencoded-1)
("rust-idna" ,rust-idna-0.2)
("rust-matches" ,rust-matches-0.1)
("rust-idna" ,rust-idna-0.3)
("rust-percent-encoding" ,rust-percent-encoding-2)
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs
(("rust-bencher" ,rust-bencher-0.1)
("rust-rustc-test" ,rust-rustc-test-0.3)
("rust-debugger-test" ,rust-debugger-test-0.1)
("rust-debugger-test-parser" ,rust-debugger-test-parser-0.1)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/servo/rust-url")
(synopsis "URL library for Rust, based on the WHATWG URL Standard")