efraim pushed a commit to branch rust-team
in repository guix.
commit 77fee1e6e9a68e9cf74ae4744793d3eaa94d23a0
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Sep 18 14:37:33 2024 +0300
gnu: Add rust-rctree-0.6.
* gnu/packages/crates-io.scm (rust-rctree-0.6): New variable.
(rust-rctree-0.5): Inherit from rust-rctree-0.6.
Change-Id: I3baf17712179c482eca235f6efc596fdea9329c7
---
gnu/packages/crates-io.scm | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 317d689b0f..d8690ea768 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -61879,24 +61879,37 @@ Rust.")
Arc and Rc APIs.")
(license (list license:expat license:asl2.0))))
-(define-public rust-rctree-0.5
+(define-public rust-rctree-0.6
(package
(name "rust-rctree")
- (version "0.5.0")
+ (version "0.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "rctree" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "0kvzahkwriawhjjb08ai7rfi77px7rpx5h83hjcx6dccyxzf4hiv"))))
+ (base32 "1sd6vsa5p3j27v6f1v0l0afl3hn4an1jr3psky3024gcmdk7hgp0"))))
(build-system cargo-build-system)
(home-page "https://github.com/RazrFalcon/rctree")
- (synopsis "DOM-like tree implemented using reference counting")
+ (synopsis "'DOM-like' tree implemented using reference counting")
(description "This package provides a @code{DOM-like} tree implemented
using
reference counting.")
(license license:expat)))
+(define-public rust-rctree-0.5
+ (package
+ (inherit rust-rctree-0.6)
+ (name "rust-rctree")
+ (version "0.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "rctree" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0kvzahkwriawhjjb08ai7rfi77px7rpx5h83hjcx6dccyxzf4hiv"))))))
+
(define-public rust-rctree-0.4
(package
(inherit rust-rctree-0.5)