mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: rust-loom-0.3: Update to 0.3.6.
* gnu/packages/crates-io.scm (rust-loom-0.3): Update to 0.3.6. [arguments]: Do not skip build. Update rust-scoped-tls Cargo input. Improve description.
This commit is contained in:
parent
f3091f7d37
commit
d37f865d22
1 changed files with 9 additions and 6 deletions
|
@ -15468,27 +15468,30 @@ by inspecting the system for user preference.")
|
||||||
(define-public rust-loom-0.3
|
(define-public rust-loom-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-loom")
|
(name "rust-loom")
|
||||||
(version "0.3.2")
|
(version "0.3.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "loom" version))
|
(uri (crate-uri "loom" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "10z738ig6vgvwc2kxjhjdr5b29p3ribk5f6gg6ak0xjxhjb4cnkc"))))
|
(base32 "1vabpqzdhcqy1d64kcyzgfwigiak0dr18whq0lkic8915w7lds50"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t ;; TODO fails due to unresolved import
|
`(#:cargo-inputs
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-cfg-if" ,rust-cfg-if-0.1)
|
(("rust-cfg-if" ,rust-cfg-if-0.1)
|
||||||
("rust-futures-util" ,rust-futures-util-0.3)
|
("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
("rust-generator" ,rust-generator-0.6)
|
("rust-generator" ,rust-generator-0.6)
|
||||||
("rust-scoped-tls" ,rust-scoped-tls-0.1)
|
("rust-scoped-tls" ,rust-scoped-tls-1.0)
|
||||||
("rust-serde" ,rust-serde-1)
|
("rust-serde" ,rust-serde-1)
|
||||||
("rust-serde-json" ,rust-serde-json-1))))
|
("rust-serde-json" ,rust-serde-json-1))))
|
||||||
(home-page "https://github.com/tokio-rs/loom")
|
(home-page "https://github.com/tokio-rs/loom")
|
||||||
(synopsis "Permutation testing for concurrent code")
|
(synopsis "Permutation testing for concurrent code")
|
||||||
(description "Permutation testing for concurrent code")
|
(description
|
||||||
|
"Loom is a testing tool for concurrent Rust code. It runs a test many
|
||||||
|
times, permuting the possible concurrent executions of that test under the C11
|
||||||
|
memory model. It uses state reduction techniques to avoid combinatorial
|
||||||
|
explosion.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-loom-0.2
|
(define-public rust-loom-0.2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue