guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

392/436: gnu: Add rust-indextree-4.


From: guix-commits
Subject: 392/436: gnu: Add rust-indextree-4.
Date: Sun, 5 Nov 2023 05:29:59 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit 534d9035056722fa5fb079cd15affb001649b721
Author: Wilko Meyer <w@wmeyer.eu>
AuthorDate: Thu Jul 27 16:31:05 2023 +0200

    gnu: Add rust-indextree-4.
    
    * gnu/packages/crates-io.scm (rust-indextree-4): New variable.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
    Change-Id: I890d898a9ffc454d31677d9de23d944bf2615bb9
---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 12cb5d3764..0ea78d50b1 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35971,6 +35971,28 @@ or numerical index.  A corresponding hash set type is 
also provided.")
         ("rust-rand" ,rust-rand-0.7)
         ("rust-serde-derive" ,rust-serde-derive-1))))))
 
+(define-public rust-indextree-4
+  (package
+    (name "rust-indextree")
+    (version "4.6.0")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "indextree" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1dnysxws5kpw8c3yvnhq3r9p2kfqqrgcw29x7hrg2gn6wp812164"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-rayon" ,rust-rayon-1)
+                       ("rust-serde" ,rust-serde-1))))
+    (home-page "https://github.com/saschagrunert/indextree";)
+    (synopsis "Arena based tree structure by using indices")
+    (description
+     "This package provides arena based tree structure by using indices instead
+of reference counted pointers.")
+    (license license:expat)))
+
 (define-public rust-indicatif-0.16
   (package
     (name "rust-indicatif")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]