mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add rust-base64-0.11.
* gnu/packages/crates-io.scm (rust-base64-0.11): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
eb60b03a6d
commit
aba73899e3
1 changed files with 25 additions and 0 deletions
|
@ -687,6 +687,31 @@ trace (backtrace) at runtime in a Rust program.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-base64-0.11
|
||||||
|
(package
|
||||||
|
(name "rust-base64")
|
||||||
|
(version "0.11.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "base64" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1iqmims6yvr6vwzyy54qd672zw29ipjj17p8klcr578c9ajpw6xl"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||||
|
("rust-rand" ,rust-rand-0.6))))
|
||||||
|
(home-page "https://github.com/marshallpierce/rust-base64")
|
||||||
|
(synopsis "Encodes and decodes base64 as bytes or utf8")
|
||||||
|
(description
|
||||||
|
"This package encodes and decodes base64 as bytes or utf8.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-base64-0.10
|
(define-public rust-base64-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-base64")
|
(name "rust-base64")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue