me
/
guix
Archived
1
0
Fork 0

gnu: rust-serde-urlencoded-0.7: Update to 0.7.1.

* gnu/packages/crates-io.scm (rust-serde-urlencoded-0.7): Update to 0.7.1.
[cargo-inputs]: Replace rust-itoa-0.4 with 1.
[cargo-development-inputs]: Add rust-serde-derive-1.
master
Efraim Flashner 2023-01-12 19:52:03 +02:00 committed by Maxim Cournoyer
parent 7e7c548433
commit 404b091c74
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 6 additions and 4 deletions

View File

@ -52614,21 +52614,23 @@ by dynamically growing the stack.")
(define-public rust-serde-urlencoded-0.7
(package
(name "rust-serde-urlencoded")
(version "0.7.0")
(version "0.7.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde_urlencoded" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1s9wnjrak5a0igfhcghhz51kvi7n010j5rs9lmhd5hfrz2kmgypd"))))
(base32 "1zgklbdaysj3230xivihs30qi5vkhigg323a9m62k8jwf4a1qjfk"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-form-urlencoded" ,rust-form-urlencoded-1)
("rust-itoa" ,rust-itoa-0.4)
("rust-itoa" ,rust-itoa-1)
("rust-ryu" ,rust-ryu-1)
("rust-serde" ,rust-serde-1))))
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs
(("rust-serde-derive" ,rust-serde-derive-1))))
(home-page "https://github.com/nox/serde_urlencoded")
(synopsis "`x-www-form-urlencoded` meets Serde")
(description