mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
gnu: Add rust-adaptive-barrier-0.1.
* gnu/packages/crates-io.scm (rust-adaptive-barrier-0.1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
1e7d277995
commit
b3d7372ab7
1 changed files with 22 additions and 0 deletions
|
@ -759,6 +759,28 @@ (define-public rust-actix-web-codegen-0.2
|
|||
(description "This package provides Actix web proc macros.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-adaptive-barrier-0.1
|
||||
(package
|
||||
(name "rust-adaptive-barrier")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "adaptive-barrier" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "003ygsiqsd85v0p846q1ym23dbp4iagn89p7k6yrvbg9di1mbjqc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments `(#:skip-build? #t))
|
||||
(home-page "https://github.com/vorner/adaptive-barrier")
|
||||
(synopsis "Barrier with adaptable number of thread subsciptions")
|
||||
(description
|
||||
"This is a Barrier synchronization primitive, similar to
|
||||
@code{std::sync::Barrier}, but one that adjusts the expected number of
|
||||
threads. This makes it robust in face of panics (it won't make your program
|
||||
deadlock, like the standard Barrier).")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-addr2line-0.11
|
||||
(package
|
||||
(name "rust-addr2line")
|
||||
|
|
Loading…
Reference in a new issue