Archived
1
0
Fork 0

gnu: rust-either-1: Update to 1.8.0.

* gnu/packages/crates-io.scm (rust-either-1): Update to 1.8.0.
[arguments]: Don't skip build.
[cargo-development-inputs]: Add rust-serde-json-1.
This commit is contained in:
Efraim Flashner 2023-01-15 11:02:55 +02:00
parent dbf0d8fc5d
commit 891e930d4c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -18561,7 +18561,7 @@ signing, and verification in pure Rust.")
(define-public rust-either-1
(package
(name "rust-either")
(version "1.6.1")
(version "1.8.0")
(source
(origin
(method url-fetch)
@ -18570,11 +18570,11 @@ signing, and verification in pure Rust.")
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0mwl9vngqf5jvrhmhn9x60kr5hivxyjxbmby2pybncxfqhf4z3g7"))))
"15z70yaivlkpx27vzv99ibf8d2x5jp24yn69y0xi20w86v4c3rch"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-serde" ,rust-serde-1))))
`(#:cargo-inputs (("rust-serde" ,rust-serde-1))
#:cargo-development-inputs (("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/bluss/either")
(synopsis
"Enum @code{Either} with variants @code{Left} and @code{Right}")