From d516b133f586426a5ba1f2eeccb2abbfa8e13fef Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 19 Sep 2024 17:49:42 +0300 Subject: [PATCH] gnu: rust-system-deps-6: Update to 6.2.2. * gnu/packages/crates-io.scm (rust-system-deps-6): Update to 6.2.2. [cargo-inputs]: Replace rust-heck-0.4 with 0.5, rust-version-compare-0.1 with 0.2. [cargo-development-inputs]: Replace rust-itertools-0.11 with 0.12. Change-Id: Ia8383d21c8e5b720ea265cb88b6492ee834e0a48 --- gnu/packages/crates-io.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 1049271122..a19ad170b5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -78463,14 +78463,14 @@ processors, disks, components and networks.") (define-public rust-system-deps-6 (package (name "rust-system-deps") - (version "6.2.0") + (version "6.2.2") (source (origin (method url-fetch) (uri (crate-uri "system-deps" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0c836abhh3k8yn5ymg8wx383ay7n731gkrbbp3gma352yq7mhb9a")) + (base32 "0j93ryw031n3h8b0nfpj5xwh3ify636xmv8kxianvlyyipmkbrd3")) (snippet #~(begin (delete-file "src/tests/lib/libteststatic.a"))))) (build-system cargo-build-system) @@ -78478,13 +78478,13 @@ processors, disks, components and networks.") `(#:tests? #f ;source is missing some test files #:cargo-inputs (("rust-cfg-expr" ,rust-cfg-expr-0.15) - ("rust-heck" ,rust-heck-0.4) + ("rust-heck" ,rust-heck-0.5) ("rust-pkg-config" ,rust-pkg-config-0.3) ("rust-toml" ,rust-toml-0.8) - ("rust-version-compare" ,rust-version-compare-0.1)) + ("rust-version-compare" ,rust-version-compare-0.2)) #:cargo-development-inputs (("rust-assert-matches" ,rust-assert-matches-1) - ("rust-itertools" ,rust-itertools-0.11) + ("rust-itertools" ,rust-itertools-0.12) ("rust-lazy-static" ,rust-lazy-static-1)))) (home-page "https://github.com/gdesmott/system-deps") (synopsis "Define system dependencies in @file{Cargo.toml}")