[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#44785] [PATCH 17/22] gnu: Add rust-base64-0.13.
From: |
Hartmut Goebel |
Subject: |
[bug#44785] [PATCH 17/22] gnu: Add rust-base64-0.13. |
Date: |
Sun, 22 Nov 2020 00:14:02 +0100 |
* gnu/packages/crates-io.scm (rust-base64-0.13): New variable.
(rust-base64-0.12): Inherit from rust-base64-0.13.
---
gnu/packages/crates-io.scm | 33 ++++++++++++++++++++++++++-------
1 file changed, 26 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 06a4bf8a63..ade3c73426 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1470,8 +1470,33 @@ trace (backtrace) at runtime in a Rust program.")
(license (list license:asl2.0
license:expat))))
+(define-public rust-base64-0.13
+ (package
+ (name "rust-base64")
+ (version "0.13.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "base64" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1z82g23mbzjgijkpcrilc7nljpxpvpf7zxf6iyiapkgka2ngwkch"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs
+ (("rust-criterion" ,rust-criterion-0.3)
+ ("rust-rand" ,rust-rand-0.6)
+ ("rust-structopt" ,rust-structopt-0.3))))
+ (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.12
(package
+ (inherit rust-base64-0.13)
(name "rust-base64")
(version "0.12.3")
(source
@@ -1490,17 +1515,11 @@ trace (backtrace) at runtime in a Rust program.")
(substitute* "src/lib.rs"
(("\\(doctest") "(test"))
#t))))
- (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))))
+ ("rust-rand" ,rust-rand-0.6))))))
(define-public rust-base64-0.11
(package
--
2.21.3
- [bug#44785] [PATCH 05/22] gnu: Add rust-ena-0.14:, (continued)
- [bug#44785] [PATCH 05/22] gnu: Add rust-ena-0.14:, Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 10/22] gnu: Add rust-signature-derive-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 09/22] gnu: Add rust-merlin-2., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 11/22] gnu: Add rust-signature-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 03/22] gnu: Add rust-num-bigint-dig-0.6., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 08/22] gnu: Add rust-keccak-0.1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 13/22] gnu: Add rust-curve25519-dalek-3., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 04/22] gnu: Add rust-memsec-0.6., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 14/22] gnu: Add rust-ed25519-dalek-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 15/22] gnu: Add rust-dyn-clone-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 17/22] gnu: Add rust-base64-0.13.,
Hartmut Goebel <=
- [bug#44785] [PATCH 16/22] gnu: Add rust-bzip2-0.3., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 18/22] gnu: Add rust-hashlink-0.6., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 21/22] gnu: Add rust-rusqlite: Update to 0.24., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 19/22] gnu: Add rust-hashbrown-0.9., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 20/22] gnu: Add rust-libsqlite3-sys-0.20., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 22/22] gnu: sequoia: Update to 0.20.0., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 00/22] Update sequoia to 0.20.0, Christopher Baines, 2020/11/23