gnu: rust-ctrlc-3: Update to 3.4.1.

* gnu/packages/crates-io.scm (rust-ctrlc-3): Update to 3.4.1.
[cargo-inputs]: Replace rust-nix-0.26 with 0.27, rust-windows-sys-0.45
with 0.48.
[cargo-development-inputs]: Add rust-signal-hook-0.3.  Replace
rust-windows-sys-0.45 with 0.48.

Change-Id: I8514dcd6fa42517569990e8c3dfe6c794e3e53d6
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Steve George 2023-11-09 19:38:50 +00:00 committed by Efraim Flashner
parent 10fdae7c26
commit 2b9af04d9b
Signed by untrusted user: efraim
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 7 deletions

View File

@ -19114,22 +19114,22 @@ re-exported cipher crate.")
(define-public rust-ctrlc-3
(package
(name "rust-ctrlc")
(version "3.2.5")
(version "3.4.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ctrlc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0fgng4k7d3bx2q86z2djkngwss43wkrfkriswhgf9jqqlv137kxv"))))
(base32 "1pyglsl1j3b54mdgv1bkxnvgp823n11pkipxmxabh18rcaymzsc2"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-nix" ,rust-nix-0.26)
("rust-windows-sys" ,rust-windows-sys-0.45))
`(#:cargo-inputs
(("rust-nix" ,rust-nix-0.27)
("rust-windows-sys" ,rust-windows-sys-0.48))
#:cargo-development-inputs
(("rust-windows-sys" ,rust-windows-sys-0.45))))
(("rust-signal-hook" ,rust-signal-hook-0.3)
("rust-windows-sys" ,rust-windows-sys-0.48))))
(home-page "https://github.com/Detegr/rust-ctrlc")
(synopsis "Easy Ctrl-C handler for Rust projects")
(description