diff options
author | VÖRÖSKŐI András <voroskoi@gmail.com> | 2024-02-24 21:39:52 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:44:09 +0300 |
commit | d8e3b2b75c3d376a884bc89422b9d073f135520f (patch) | |
tree | 00b19609867012328fc71d88c57eefcca89cb392 /gnu | |
parent | 19727d1e3f94358a4450d4c1c9300d1db08ed415 (diff) | |
download | guix-d8e3b2b75c3d376a884bc89422b9d073f135520f.tar guix-d8e3b2b75c3d376a884bc89422b9d073f135520f.tar.gz |
gnu: rust-clap-derive: Update to 4.5.4.
* gnu/packages/crates-io.scm (rust-clap-derive-4): Update to 4.5.4.
[cargo-inputs]: Replace rust-heck-0.4 with 0.5.
Change-Id: If6e59e0b352fac6f3659f72d43b31b5d4b4e8f2b
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8d3519d430..b18834ffb4 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -12368,18 +12368,18 @@ how to behave across the three main input sources") (define-public rust-clap-derive-4 (package (name "rust-clap-derive") - (version "4.4.7") + (version "4.5.4") (source (origin (method url-fetch) (uri (crate-uri "clap_derive" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0hk4hcxl56qwqsf4hmf7c0gr19r9fbxk0ah2bgkr36pmmaph966g")))) + (base32 "0r2gs2p10pb435w52xzsgz2mmx5qd3qfkmk29y4mbz9ph11k30aj")))) (build-system cargo-build-system) (arguments (list #:cargo-inputs - `(("rust-heck" ,rust-heck-0.4) + `(("rust-heck" ,rust-heck-0.5) ("rust-proc-macro2" ,rust-proc-macro2-1) ("rust-quote" ,rust-quote-1) ("rust-syn" ,rust-syn-2)))) |