From unknown Wed Aug 20 00:02:48 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#50995 <50995@debbugs.gnu.org> To: bug#50995 <50995@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add rust-sha3. Reply-To: bug#50995 <50995@debbugs.gnu.org> Date: Wed, 20 Aug 2025 07:02:48 +0000 retitle 50995 [PATCH] gnu: Add rust-sha3. reassign 50995 guix-patches submitter 50995 phodina severity 50995 normal tag 50995 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 03 12:38:27 2021 Received: (at submit) by debbugs.gnu.org; 3 Oct 2021 16:38:27 +0000 Received: from localhost ([127.0.0.1]:34811 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mX4VP-0004M5-Aj for submit@debbugs.gnu.org; Sun, 03 Oct 2021 12:38:27 -0400 Received: from lists.gnu.org ([209.51.188.17]:52942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mX4VM-0004Lx-T4 for submit@debbugs.gnu.org; Sun, 03 Oct 2021 12:38:26 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44890) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mX4VM-0006F4-FU for guix-patches@gnu.org; Sun, 03 Oct 2021 12:38:24 -0400 Received: from mail-4316.protonmail.ch ([185.70.43.16]:14813) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mX4VK-00044D-1Q for guix-patches@gnu.org; Sun, 03 Oct 2021 12:38:24 -0400 Date: Sun, 03 Oct 2021 16:38:16 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1633279098; bh=KkMWdV7FWv2Tb5dXHxRx/kkHda+LIrtRUG/P/e103/E=; h=Date:To:From:Reply-To:Subject:From; b=ocM8prGKO9fMDXw7K34YZGfgv+mbqST3gpsUlJwtJismEyXrv8oMkdyE+XA2tw84y zO/UuqRE4F05hQTspqL/FsP796drOKcJ8tuDjWn+VpuT9sTOcy8wlv1nJV63FIJetQ CLfUsrP03ninee7HsOE3u2I6NJRvzW5VYXCjlIKc= To: phodina via Guix-patches via From: phodina Subject: [PATCH] gnu: Add rust-sha3. Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.43.16; envelope-from=phodina@protonmail.com; helo=mail-4316.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: phodina Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/crates-io.scm (rust-sha3): New variable. diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 48a05fb8be..d6cdc8a7a2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -44713,6 +44713,33 @@ functions core functionality.") (("rust-gcc" ,rust-gcc-0.3) ("rust-generic-array" ,rust-generic-array-0.8)))))) +(define-public rust-sha3-0.9 + (package + (name "rust-sha3") + (version "0.9.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "sha3" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))= )) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-block-buffer" ,rust-block-buffer-0.9) + ("rust-digest" ,rust-digest-0.9) + ("rust-keccak" ,rust-keccak-0.1) + ("rust-opaque-debug" ,rust-opaque-debug-0.3)) + #:cargo-development-inputs + (("rust-digest" ,rust-digest-0.9) + ("rust-hex-literal" ,rust-hex-literal-0.2)))) + (home-page "https://github.com/RustCrypto/hashes") + (synopsis "SHA-3 (Keccak) hash function") + (description "This package provides a pure Rust implementation of the = SHA-3 +(Keccak) hash function.") + (license (list license:expat license:asl2.0)))) + (define-public rust-shader-version-0.6 (package (name "rust-shader-version") -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 04 04:18:43 2021 Received: (at 50995-done) by debbugs.gnu.org; 4 Oct 2021 08:18:43 +0000 Received: from localhost ([127.0.0.1]:35567 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXJBL-0007YZ-4T for submit@debbugs.gnu.org; Mon, 04 Oct 2021 04:18:43 -0400 Received: from flashner.co.il ([178.62.234.194]:56698) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXJBF-0007YI-Mz for 50995-done@debbugs.gnu.org; Mon, 04 Oct 2021 04:18:41 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id 299DC4004A; Mon, 4 Oct 2021 08:18:31 +0000 (UTC) Date: Mon, 4 Oct 2021 11:16:10 +0300 From: Efraim Flashner To: phodina Subject: Re: [bug#50995] [PATCH] gnu: Add rust-sha3. Message-ID: Mail-Followup-To: Efraim Flashner , phodina , 50995-done@debbugs.gnu.org References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="RC/j7v3TO0/k8r7F" Content-Disposition: inline In-Reply-To: X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 50995-done Cc: 50995-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --RC/j7v3TO0/k8r7F Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks. Patch pushed. --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --RC/j7v3TO0/k8r7F Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmFauEoACgkQQarn3Mo9 g1FGqg//XP79OXXg5J9ji0YEDPBsNUjCKtmaZqToi0m1Xz6wC1BvAjkWcz9FT4gR 5w5z3gKGx9NYDk0NDGkSE22QFVLOfWpMo8QNqtVNy0ac7Dq6xoOoRWgmmGMJ6RPk BZOlQUHQ+m8bSTlculL60h/CPn/ckFNCZA2q6neHfObotihEI0RYpwDAyZlvhvKW 3re7bpEit41Ifyi+nwamRHwUIWzlxmkVakwtQQVQGLyVleU7ZzygxntWonTA7Xdg 46Ad2tt/w7C/+nUgTtYU8PnEjUXHA8Rn+fjvR2nMtsXvdmcr5NZmkbOW9u5y7Lu/ awqsxgJ97PQ69Od4Lv6BaiSra0cRRCJY1A5BOi3hEFlMFIakuFOSRu36vqWHFZ8a ynz+dTqrdtaPUtV7uAEts6nGMamBzzk0fALREt/OPjGr1i1ZBwbj3sJ9abJWEWQD Ah7o6T+Et9sG7K0pXAdKLlX9ZWeKrXCc/oGD+7kCZbNVKPsxe0VoILRSv6PmAgOI 6cyVh4JRIYWRp4/wtGC/Akp1AjaXVtNZVO4dOEJaF/HvLHLCZWoq1ithqvju4Ppy MC1KRMP3YSb1kAgKFfS+POYo8bKGhfC39uRalG1qTOwLDV+AZKuwHHjIg6sE6f+i riBbhpqraYv1c/4377cKwzpX9oxb04y1xsixCHmo/IjeFLPBLjs= =QcKr -----END PGP SIGNATURE----- --RC/j7v3TO0/k8r7F-- From unknown Wed Aug 20 00:02:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 01 Nov 2021 11:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator