mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add rust-bencher.
* gnu/packages/crates-io.scm (rust-bencher): New variable.
This commit is contained in:
parent
060958949a
commit
242668bdbd
1 changed files with 22 additions and 0 deletions
|
@ -49,6 +49,28 @@ support.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-bencher
|
||||||
|
(package
|
||||||
|
(name "rust-bencher")
|
||||||
|
(version "0.1.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "bencher" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1x8p2xblgqssay8cdykp5pkfc0np0jk5bs5cx4f5av097aav9zbx"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/bluss/bencher/")
|
||||||
|
(synopsis "Port of the libtest benchmark runner to Rust stable")
|
||||||
|
(description "This package provides a port of the libtest (unstable Rust)
|
||||||
|
benchmark runner to Rust stable releases. Supports running benchmarks and
|
||||||
|
filtering based on the name. Benchmark execution works exactly the same way
|
||||||
|
and no more (caveat: black_box is still missing!).")
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
||||||
(define-public rust-proc-macro2
|
(define-public rust-proc-macro2
|
||||||
(package
|
(package
|
||||||
(name "rust-proc-macro2")
|
(name "rust-proc-macro2")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue