gnu: Add rust-assert-0.7.

* gnu/packages/crates-io.scm (rust-assert-0.7): New variable.
This commit is contained in:
Ricardo Wurmus 2021-11-10 06:58:50 +00:00
parent 458b1c22bf
commit 8be33436db
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 18 additions and 0 deletions

View File

@ -2835,6 +2835,24 @@ standard library.")
"This library provides utilities to handle ASCII characters.")
(license license:mpl2.0)))
(define-public rust-assert-0.7
(package
(name "rust-assert")
(version "0.7.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "assert" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1hnph97yz3hpf71s4rdzcrgd492d1m7rj0k48ymxl1w5d2g8v450"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/stainless-steel/assert")
(synopsis "Assertions for testing")
(description "This package provides assertions for testing.")
(license (list license:asl2.0 license:expat))))
(define-public rust-assert-cli-0.6
(package
(name "rust-assert-cli")