unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: "VÖRÖSKŐI András" <voroskoi@gmail.com>
To: 67078@debbugs.gnu.org
Cc: "VÖRÖSKŐI András" <voroskoi@gmail.com>
Subject: [bug#67078] [PATCH 02/36] gnu: Add rust-argon2-0.5.
Date: Sat, 11 Nov 2023 16:15:50 +0100	[thread overview]
Message-ID: <cab0ce6711fc0f6c53afad3a4ae511126deaf67b.1699715780.git.voroskoi@gmail.com> (raw)
In-Reply-To: <ff190edcc3a1bc85e645c0a9785133c69a7d5688.1699715780.git.voroskoi@gmail.com>

* gnu/packages/crates-io.scm (rust-argon2-0.5): New variable.

Change-Id: I15970bb5338c19f524f82f39ec53a7b91c71bc3e
---
 gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 119a59d24f..75fed87989 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -4021,6 +4021,36 @@ (define-public rust-argmax-0.3
 too long errors.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-argon2-0.5
+  (package
+    (name "rust-argon2")
+    (version "0.5.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "argon2" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1y820hkza66lfliaxg49zskz7agj8wf7aak528livg261an4rfhp"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-base64ct" ,rust-base64ct-1)
+        ("rust-blake2" ,rust-blake2-0.10)
+        ("rust-cpufeatures" ,rust-cpufeatures-0.2)
+        ("rust-password-hash" ,rust-password-hash-0.5)
+        ("rust-zeroize" ,rust-zeroize-1))
+       #:cargo-development-inputs
+       (("rust-hex-literal" ,rust-hex-literal-0.4)
+        ("rust-password-hash" ,rust-password-hash-0.5))))
+    (home-page
+     "https://github.com/RustCrypto/password-hashes/tree/master/argon2")
+    (synopsis "Rust argon2 library")
+    (description
+     "Pure Rust implementation of the Argon2 password hashing function with support
+for the Argon2d, Argon2i, and Argon2id algorithmic variants.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-ariadne-0.1
   (package
     (name "rust-ariadne")
-- 
2.41.0





  reply	other threads:[~2023-11-11 15:20 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-11 15:15 [bug#67087] [PATCH 01/36] gnu: rust-cpufeatures-0.2: Update to 0.2.11 VÖRÖSKŐI András
2023-11-11 15:15 ` VÖRÖSKŐI András [this message]
2023-11-11 15:15 ` [bug#67080] [PATCH 03/36] gnu: rust-base64-0.21: Update to 0.21.5 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67079] [PATCH 04/36] gnu: Add rust-borsh-schema-derive-internal-0.10 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67081] [PATCH 05/36] gnu: Add rust-borsh-derive-internal-0.10 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67083] [PATCH 06/36] gnu: Add rust-borsh-derive-0.10 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67089] [PATCH 07/36] gnu: Add rust-borsh-0.10 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67082] [PATCH 08/36] gnu: rust-zeroize-1: Update to 1.6.0 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67084] [PATCH 09/36] gnu: rust-thiserror-impl-1: Update to 1.0.50 VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67086] [PATCH 10/36] gnu: rust-thiserror-1: " VÖRÖSKŐI András
2023-11-11 15:15 ` [bug#67085] [PATCH 11/36] gnu: rust-anyhow-1: Update to 1.0.75 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67088] [PATCH 12/36] gnu: rust-aes-0.8: Update to 0.8.3 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67090] [PATCH 13/36] gnu: rust-block-padding-0.3: Update to 0.3.3 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67091] [PATCH 14/36] gnu: Add rust-daemonize-0.5 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67092] [PATCH 15/36] gnu: rust-digest-0.10: Update to 0.10.7 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67093] [PATCH 16/36] gnu: Add rust-directories-5 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67094] [PATCH 17/36] gnu: Add rust-koibumi-base32-0.0 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67095] [PATCH 18/36] gnu: Add rust-input-buffer-0.5 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67096] [PATCH 19/36] gnu: rust-pbkdf2-0.12: Update to 0.12.2 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67097] [PATCH 20/36] gnu: Add rust-rmpv-1 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67098] [PATCH 21/36] gnu: rust-serde-path-to-error-0.1: Update to 0.1.14 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67099] [PATCH 22/36] gnu: rust-terminal-size-0.2: Update to 0.2.6 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67100] [PATCH 23/36] gnu: Add rust-tokio-rustls-0.24 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67101] [PATCH 24/36] gnu: Add rust-tungstenite-0.19 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67102] [PATCH 25/36] gnu: Add rust-totp-lite-2 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67103] [PATCH 26/36] gnu: rust-tokio-native-tls-0.3: Update to 0.3.1 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67104] [PATCH 27/36] gnu: rust-h2-0.3: Update to 0.3.21 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67087] [PATCH 28/36] gnu: Add rust-netmap-sys-0.1 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67105] [PATCH 29/36] gnu: Add rust-pcap-0.7 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67106] [PATCH 30/36] gnu: Add rust-pnet-base-0.27 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67107] [PATCH 31/36] gnu: Add rust-pnet-datalink-0.27 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67087] [PATCH 32/36] gnu: Add rust-pnet-sys-0.27 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67087] [PATCH 33/36] gnu: rust-hyper-0.14: Update to 0.14.27 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67087] [PATCH 34/36] gnu: Add rust-tokio-tungstenite-0.19 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67087] [PATCH 35/36] gnu: rust-sha2-0.10: Update to 0.10.8 VÖRÖSKŐI András
2023-11-11 15:16 ` [bug#67087] [PATCH 36/36] gnu: rbw: Update to 1.8.3 VÖRÖSKŐI András

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cab0ce6711fc0f6c53afad3a4ae511126deaf67b.1699715780.git.voroskoi@gmail.com \
    --to=voroskoi@gmail.com \
    --cc=67078@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).