gnu: rust-rawslice-0.1: Update to 0.1.1.
authorEfraim Flashner <efraim@flashner.co.il>
Thu, 9 Jul 2020 12:54:08 +0000 (15:54 +0300)
committerEfraim Flashner <efraim@flashner.co.il>
Thu, 9 Jul 2020 14:00:29 +0000 (17:00 +0300)
* 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.

gnu/packages/crates-io.scm

index 0431ed2..6b45eb7 100644 (file)
@@ -19170,7 +19170,7 @@ and @code{ptrdistance}.")
 (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 @@ and @code{ptrdistance}.")
         (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