gnu: rust-ropey-1: Update to 1.6.1.

* gnu/packages/crates-io.scm (rust-ropey-1): Update to 1.6.1.
[arguments]: Don't skip the build.
[cargo-inputs]: Add rust-str-indices-0.4.
[cargo-development-inputs]: Add rust-criterion-0.3, rust-fnv-1,
rust-fxhash-0.2.  Replace rust-proptest-0.9 with 1, rust-rand-0.7 with
0.8.  Remove rust-bencher-0.1.

Change-Id: Icfe7d529365d3b138810968f1fe1a4d93fb1621e
This commit is contained in:
Efraim Flashner 2024-03-31 14:16:40 +03:00
parent bee15e4e60
commit f51b83abc1
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -61455,23 +61455,25 @@ (define-public rust-ron-0.4
(define-public rust-ropey-1
(package
(name "rust-ropey")
(version "1.2.0")
(version "1.6.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ropey" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "10qsj7m6hz953ar68q7iqwwizrh89jaclgffzglb7nwzb0bfzwzh"))))
(base32 "1dckf3likfi1my2ilqwhq2ifsm9iq8cayg6ws7fpa6nd1d11whck"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-smallvec" ,rust-smallvec-1))
`(#:cargo-inputs
(("rust-smallvec" ,rust-smallvec-1)
("rust-str-indices" ,rust-str-indices-0.4))
#:cargo-development-inputs
(("rust-bencher" ,rust-bencher-0.1)
("rust-proptest" ,rust-proptest-0.9)
("rust-rand" ,rust-rand-0.7)
(("rust-criterion" ,rust-criterion-0.3)
("rust-fnv" ,rust-fnv-1)
("rust-fxhash" ,rust-fxhash-0.2)
("rust-proptest" ,rust-proptest-1)
("rust-rand" ,rust-rand-0.8)
("rust-unicode-segmentation" ,rust-unicode-segmentation-1))))
(home-page "https://github.com/cessen/ropey")
(synopsis "Fast and robust text rope for Rust")