me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-typed-arena-1.4.

* gnu/packages/crates-io.scm (rust-typed-arena-1.4): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 18:39:54 -08:00 committed by Efraim Flashner
parent d3af7e3ec8
commit 1ac4b950a9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -6929,6 +6929,27 @@ serializing Rust structures.")
(properties '((hidden? . #t)))
(license license:expat)))
(define-public rust-typed-arena-1.4
(package
(name "rust-typed-arena")
(version "1.4.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "typed-arena" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1i8yczhwcy0nnrxqck1lql3i7hvg95l0vw0dbgfb92zkms96mh66"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/SimonSapin/rust-typed-arena")
(synopsis "The arena allocator")
(description
"The arena, a fast but limited type of allocator.")
(license license:expat)))
(define-public rust-typemap-0.3
(package
(name "rust-typemap")