diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-01-15 11:02:55 +0200 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 15:11:24 -0400 |
commit | 45401533ded93fbfaa90b2650bee4dfcbd5e4be8 (patch) | |
tree | 134387c013c66429e2d60a54f3a8458688980ee0 /gnu/packages | |
parent | aec6e7aacb60dd39323e64a5b97e24a74f472665 (diff) |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 5dccd863e6..6488469f24 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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}") |