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

* gnu/packages/crates-io.scm (rust-base64ct-1, rust-base64ct-1.0.1):
Move from here ...
* gnu/packages/crates-crypto.scm: ... to here.

Change-Id: I534b1833ac7a0d463986cf7504f37b56ced201ce
This commit is contained in:
Efraim Flashner 2024-01-21 15:52:22 +02:00
parent f534b1c554
commit 87c5e26b44
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
2 changed files with 39 additions and 39 deletions

View File

@ -589,6 +589,45 @@ embedded-friendly no_std support.")
(sha256
(base32 "1klccxr7igf73wpi0x3asjd8n0xjg0v6a7vxgvfk5ybvgh1hd6il"))))))
(define-public rust-base64ct-1
(package
(name "rust-base64ct")
(version "1.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "base64ct" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0nvdba4jb8aikv60az40x2w1y96sjdq8z3yp09rwzmkhiwv1lg4c"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-base64" ,rust-base64-0.21)
("rust-proptest" ,rust-proptest-1))))
(home-page "https://github.com/RustCrypto/formats/tree/master/base64ct")
(synopsis "Implementation of Base64 (RFC 4648)")
(description
"This package is a pure Rust implementation of Base64 (RFC 4648) which
avoids any usages of data-dependent branches/LUTs and thereby provides
portable \"best effort\" constant-time operation and embedded-friendly
@code{no_std} support.")
(license (list license:asl2.0 license:expat))))
(define-public rust-base64ct-1.0.1
(package
(inherit rust-base64ct-1)
(name "rust-base64ct")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "base64ct" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0sx4a44c2n450lsmi0q1mgfbjhkw1sx57462cv77p0mmy9mgscla"))))
(arguments '())))
(define-public rust-blake2-0.10
(package
(name "rust-blake2")

View File

@ -5296,45 +5296,6 @@ c6e7d37. However, this package works only up to 128 bytes.")
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.4))))))
(define-public rust-base64ct-1
(package
(name "rust-base64ct")
(version "1.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "base64ct" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0nvdba4jb8aikv60az40x2w1y96sjdq8z3yp09rwzmkhiwv1lg4c"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-base64" ,rust-base64-0.21)
("rust-proptest" ,rust-proptest-1))))
(home-page "https://github.com/RustCrypto/formats/tree/master/base64ct")
(synopsis "Implementation of Base64 (RFC 4648)")
(description
"This package is a pure Rust implementation of Base64 (RFC 4648) which
avoids any usages of data-dependent branches/LUTs and thereby provides
portable \"best effort\" constant-time operation and embedded-friendly
@code{no_std} support.")
(license (list license:asl2.0 license:expat))))
(define-public rust-base64ct-1.0.1
(package
(inherit rust-base64ct-1)
(name "rust-base64ct")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "base64ct" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0sx4a44c2n450lsmi0q1mgfbjhkw1sx57462cv77p0mmy9mgscla"))))
(arguments '())))
(define-public rust-base-x-0.2
(package
(name "rust-base-x")