ngz pushed a commit to branch master
in repository guix.
commit 7efc4e6b293687d971cbb85de40c3dc5e7b56e5b
Author: Zheng Junjie <[email protected]>
AuthorDate: Wed Jan 19 20:21:14 2022 +0100
gnu: Add rust-typed-arena-2.
* gnu/packages/crates-io.scm (rust-typed-arena-2): New variable.
(rust-typed-arena-1): Inherit from above.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/crates-io.scm | 26 +++++++++++++++++++++-----
1 file changed, 21 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f6116c81e6..f18fe80db7 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -15,7 +15,7 @@
;;; Copyright © 2020 Antoine Côté <[email protected]>
;;; Copyright © 2021, 2022 Maxim Cournoyer <[email protected]>
;;; Copyright © 2021 aecepoglu <[email protected]>
-;;; Copyright © 2021 Zheng Junjie <[email protected]>
+;;; Copyright © 2021, 2022 Zheng Junjie <[email protected]>
;;; Copyright © 2021 Alexandru-Sergiu Marton <[email protected]>
;;; Copyright © 2021 Antero Mejr <[email protected]>
;;; Copyright © 2021 Maxim Cournoyer <[email protected]>
@@ -23,7 +23,6 @@
;;; Copyright © 2021 Petr Hodina <[email protected]>
;;; Copyright © 2021 Ricardo Wurmus <[email protected]>
;;; Copyright © 2021 Jacob Hrbek <[email protected]>
-;;; Copyright © 2021 Zheng Junjie <[email protected]>
;;; Copyright © 2021 Nicolas Graves <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -61836,10 +61835,10 @@ strings.")
(description "Exposes Typeable, for getting TypeIds at runtime.")
(license license:expat)))
-(define-public rust-typed-arena-1
+(define-public rust-typed-arena-2
(package
(name "rust-typed-arena")
- (version "1.4.1")
+ (version "2.0.1")
(source
(origin
(method url-fetch)
@@ -61848,7 +61847,7 @@ strings.")
(string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1i8yczhwcy0nnrxqck1lql3i7hvg95l0vw0dbgfb92zkms96mh66"))))
+ "1bnhphrksp9krxhsfhfimrxvkbah2pa6rf9ygmpw5lalbm6wi186"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/SimonSapin/rust-typed-arena")
@@ -61857,6 +61856,23 @@ strings.")
"The arena, a fast but limited type of allocator.")
(license license:expat)))
+(define-public rust-typed-arena-1
+ (package
+ (inherit rust-typed-arena-2)
+ (name "rust-typed-arena")
+ (version "1.4.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "typed-arena" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1i8yczhwcy0nnrxqck1lql3i7hvg95l0vw0dbgfb92zkms96mh66"))))
+ (build-system cargo-build-system)
+ (arguments `(#:skip-build? #t))))
+
(define-public rust-typed-builder-0.5
(package
(name "rust-typed-builder")