gnu: rust-rawslice-0.1: Update to 0.1.1.

* gnu/packages/crates-io.scm (rust-rawslice-0.1): Update to 0.1.1.
[arguments]: Don't skip build. In cargo-inputs replace
rust-rawpointer-0.1 with 0.2. In cargo-development-inputs replace
rust-quickcheck-0.8 with 0.4.
This commit is contained in:
Efraim Flashner 2020-07-09 15:54:08 +03:00
parent d099329c98
commit 813360e0d6
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -19170,7 +19170,7 @@ (define-public rust-rawpointer-0.1
(define-public rust-rawslice-0.1
(package
(name "rust-rawslice")
(version "0.1.0")
(version "0.1.1")
(source
(origin
(method url-fetch)
@ -19179,14 +19179,13 @@ (define-public rust-rawslice-0.1
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"09bympww1rpsd422da3w444q5w1znjbjh7mjninhq9gaaygkpci2"))))
"1kfidydpw770wfzp2c4y7jfq1vr5jbql5sk86xg2wx3an84cj8wf"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-rawpointer" ,rust-rawpointer-0.1))
`(#:cargo-inputs
(("rust-rawpointer" ,rust-rawpointer-0.2))
#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.8))))
(("rust-quickcheck" ,rust-quickcheck-0.4))))
(home-page "https://github.com/bluss/rawslice/")
(synopsis "Reimplementation of the slice iterators, with extra features")
(description