gnu: Add rust-cap-0.1.
* gnu/packages/crates-io.scm (rust-cap-0.1): New variable. Change-Id: Ie8ec11859a4448fa130088a9c724da5ebe86f944
This commit is contained in:
parent
467f670d21
commit
a1b99c3c0f
1 changed files with 21 additions and 0 deletions
|
@ -11391,6 +11391,27 @@ spreadsheet file.")
|
||||||
canonical filesystem paths.")
|
canonical filesystem paths.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-cap-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-cap")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "cap" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "00q00chl1y8j6p9f9rndnd9jyqyqklnd5l9fn0v4r8l4bfw5w4kg"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f)) ; memory allocation of 48 bytes failed
|
||||||
|
(home-page "https://github.com/alecmocatta/cap")
|
||||||
|
(synopsis "Allocator that can track and limit memory usage")
|
||||||
|
(description
|
||||||
|
"This crate provides a generic allocator that wraps another allocator,
|
||||||
|
tracking memory usage and enabling limits to be set.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-capnp-0.14
|
(define-public rust-capnp-0.14
|
||||||
(package
|
(package
|
||||||
(name "rust-capnp")
|
(name "rust-capnp")
|
||||||
|
|
Reference in a new issue