me
/
guix
Archived
1
0
Fork 0

gnu: rust-serde-1: Update to 1.0.123.

* gnu/packages/crates-io.scm (rust-serde-1): Update to 1.0.123.
[arguments]: Skip build.  Remove Cargo development inputs.
master
Nicolas Goaziou 2021-02-16 22:27:49 +01:00
parent b4f755decd
commit 9866b1da45
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 9 additions and 13 deletions

View File

@ -35619,23 +35619,19 @@ rules are rather complex. This crate implements the whole grammar." )
(define-public rust-serde-1
(package
(name "rust-serde")
(version "1.0.118")
(version "1.0.123")
(source
(origin
(method url-fetch)
(uri (crate-uri "serde" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"0028kv3dh3ix5g7jfws22zb9hcqq4cnpwn2lnlpam1wxhmil5ih6"))))
(origin
(method url-fetch)
(uri (crate-uri "serde" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1bk9733mgiv5sg8yb19y8mc85fb2aaqp1k02v10alavj688idmcj"))))
(build-system cargo-build-system)
(arguments
;; Tests fail with "error: cannot find derive macro `Deserialize` in this
;; scope".
`(#:tests? #false
`(#:skip-build? #t
#:cargo-inputs
(("rust-serde-derive" ,rust-serde-derive-1))
#:cargo-development-inputs
(("rust-serde-derive" ,rust-serde-derive-1))))
(home-page "https://serde.rs")
(synopsis "Generic serialization/deserialization framework")