gnu: Add rust-assert-matches-1.3.

* gnu/packages/crates-io.scm (rust-assert-matches-1.3): New variable.
This commit is contained in:
Valentin Ignatev 2020-01-15 03:24:17 +03:00 committed by Efraim Flashner
parent 835c854b5d
commit ccdc86338d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -478,6 +478,26 @@ (define-public rust-ascii-0.9
"ASCII-only equivalents to @code{char}, @code{str} and @code{String}.") "ASCII-only equivalents to @code{char}, @code{str} and @code{String}.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-assert-matches-1.3
(package
(name "rust-assert-matches")
(version "1.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "assert_matches" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1rar61v00gz2aniid0mylxcr4q98s6l77c3hvbszmg57kj10msvx"))))
(build-system cargo-build-system)
(home-page "https://github.com/murarth/assert_matches")
(synopsis "Asserts that a value matches a pattern")
(description
"This package asserts that a value matches a pattern in Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-atty-0.2 (define-public rust-atty-0.2
(package (package
(name "rust-atty") (name "rust-atty")