diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-03-19 11:51:19 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-03-19 22:33:28 +0200 |
commit | d23c34727ff3d6e8822f228f48a3e70390c34254 (patch) | |
tree | 262ddf79d7c7b5a833b308789d903b18532f5763 /gnu/packages | |
parent | 4bf3167de2d47c1b0f5fd4eede63e7e0ebe015d7 (diff) | |
download | patches-d23c34727ff3d6e8822f228f48a3e70390c34254.tar patches-d23c34727ff3d6e8822f228f48a3e70390c34254.tar.gz |
gnu: Add rust-rctree-0.3.
* gnu/packages/crates-io.scm (rust-rctree-0.3): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7eb93a6197..8622ac3ea7 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -14682,6 +14682,26 @@ accessors.") ("rust-rand-xorshift" ,rust-rand-xorshift-0.2) ("rust-scoped-tls" ,rust-scoped-tls-1.0)))))) +(define-public rust-rctree-0.3 + (package + (name "rust-rctree") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "rctree" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1a54z2b850albiqx9vw009p9xg363vqzh1ybkwb89zn8375jk7my")))) + (build-system cargo-build-system) + (home-page "https://github.com/RazrFalcon/rctree") + (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-rdrand-0.4 (package (name "rust-rdrand") |