gnu: Add rust-ego-tree-0.6.

* gnu/packages/crates-io.scm (rust-ego-tree-0.6): New variable.
This commit is contained in:
Nicolas Goaziou 2021-10-06 16:18:26 +02:00
parent cc415fd880
commit 64662ca988
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -15346,6 +15346,24 @@ (define-public rust-edit-distance-2
"Levenshtein edit distance between strings, a measure for similarity.")
(license license:asl2.0)))
(define-public rust-ego-tree-0.6
(package
(name "rust-ego-tree")
(version "0.6.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "ego-tree" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "149mkc6j7bx653s39rpnsnpl5dvd1rj18czcil57w54k868a8s1s"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/programble/ego-tree")
(synopsis "Vec-backed ID-tree")
(description "Ego Tree provides a vec-backed ID-tree.")
(license license:isc)))
(define-public rust-either-1
(package
(name "rust-either")