1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 11:00:36 +02:00

gnu: rust-rand-core: Update 0.9.3.

* gnu/packages/crates-io.scm (rust-rand-core-0.9): New variable.

Change-Id: Iec65423e39f0e5442de03f5a641a485c84b0f947
This commit is contained in:
Danny Milosavljevic 2025-05-19 01:58:04 +02:00
parent 661f1570b3
commit 45b426b416
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -62770,6 +62770,29 @@ useful types and distributions, and some randomness-related algorithms.")
#:cargo-development-inputs
(("rust-autocfg" ,rust-autocfg-0.1))))))
(define-public rust-rand-core-0.9
(package
(name "rust-rand-core")
(version "0.9.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "rand_core" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0f3xhf16yks5ic6kmgxcpv1ngdhp48mmfy4ag82i1wnwh8ws3ncr"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-getrandom" ,rust-getrandom-0.3)
("rust-serde" ,rust-serde-1))))
(home-page "https://rust-random.github.io/book")
(synopsis "Core random number generator traits and tools")
(description
"This package provides core random number generator traits and
tools for implementation.")
(license (list license:expat license:asl2.0))))
(define-public rust-rand-core-0.6
(package
(name "rust-rand-core")