me
/
guix
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.
master
Efraim Flashner 2023-01-15 11:02:55 +02:00 committed by Maxim Cournoyer
parent aec6e7aacb
commit 45401533de
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 4 additions and 4 deletions

View File

@ -18681,7 +18681,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)
@ -18690,11 +18690,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}")