mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-base64-0.20.
* gnu/packages/crates-io.scm (rust-base64-0.20): New variable.
This commit is contained in:
parent
2ba8db96a4
commit
e7ea8cc60a
1 changed files with 21 additions and 0 deletions
|
@ -5825,6 +5825,27 @@ (define-public rust-base64-0.21
|
||||||
"This package encodes and decodes base64 as bytes or utf8.")
|
"This package encodes and decodes base64 as bytes or utf8.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-base64-0.20
|
||||||
|
(package
|
||||||
|
(inherit rust-base64-0.21)
|
||||||
|
(name "rust-base64")
|
||||||
|
(version "0.20.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "base64" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1r855djiv8rirg37w5arazk42ya5gm5gd2bww75v14w0sy02i8hf"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.4)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-rstest" ,rust-rstest-0.12)
|
||||||
|
("rust-rstest-reuse" ,rust-rstest-reuse-0.3)
|
||||||
|
("rust-structopt" ,rust-structopt-0.3))))))
|
||||||
|
|
||||||
(define-public rust-base64-0.13
|
(define-public rust-base64-0.13
|
||||||
(package
|
(package
|
||||||
(inherit rust-base64-0.21)
|
(inherit rust-base64-0.21)
|
||||||
|
|
Loading…
Reference in a new issue