mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 10:56:56 -05:00
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
This commit is contained in:
parent
d6a49479c1
commit
c013502e7f
1 changed files with 22 additions and 0 deletions
|
@ -35971,6 +35971,28 @@ (define-public rust-indexmap-1.7
|
|||
("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")
|
||||
|
|
Loading…
Reference in a new issue