gnu: rust-argon2-0.5: Move to (gnu packages crates-crypto).

* gnu/packages/crates-io.scm (rust-argon2-0.5): Move from here ...
* gnu/packages/crates-crypto.scm: ... to here.

Change-Id: I34fa8c10c4ab6e1f871230a289e6afe84148df28
This commit is contained in:
Efraim Flashner 2024-01-21 15:50:19 +02:00
parent e2a7867ad5
commit 5cd8f451ea
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 30 additions and 30 deletions

View file

@ -525,6 +525,36 @@ (define-public rust-aesni-0.6
("rust-opaque-debug" ,rust-opaque-debug-0.2) ("rust-opaque-debug" ,rust-opaque-debug-0.2)
("rust-stream-cipher" ,rust-stream-cipher-0.3)))))) ("rust-stream-cipher" ,rust-stream-cipher-0.3))))))
(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-blake2-0.10 (define-public rust-blake2-0.10
(package (package
(name "rust-blake2") (name "rust-blake2")

View file

@ -2305,36 +2305,6 @@ (define-public rust-argmax-0.3
too long errors.") too long errors.")
(license (list license:expat license:asl2.0)))) (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 (define-public rust-ariadne-0.1
(package (package
(name "rust-ariadne") (name "rust-ariadne")