mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 01:33:18 -05:00
gnu: rust-rand-chacha-0.3: Update to 0.3.1.
* gnu/packages/crates-io.scm (rust-rand-chacha-0.3): Update to 0.3.1. [arguments]: Don't skip build. [cargo-inputs]: Add rust-serde-1. [cargo-development-inputs]: Add rust-serde-json-1.
This commit is contained in:
parent
3a0ce99bd3
commit
1a5a17f5de
1 changed files with 7 additions and 5 deletions
|
@ -45353,20 +45353,22 @@ (define-public rust-rand-0.3
|
||||||
(define-public rust-rand-chacha-0.3
|
(define-public rust-rand-chacha-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-rand-chacha")
|
(name "rust-rand-chacha")
|
||||||
(version "0.3.0")
|
(version "0.3.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "rand_chacha" version))
|
(uri (crate-uri "rand_chacha" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "03df2xh5nbdvwr17qm3sviaxa95r8yhm1nil2pr0pqf90p7ka9z1"))))
|
(base32 "123x2adin558xbhvqb8w4f6syjsdkmqff8cxwhmjacpsl1ihmhg6"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:cargo-inputs
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-ppv-lite86" ,rust-ppv-lite86-0.2)
|
(("rust-ppv-lite86" ,rust-ppv-lite86-0.2)
|
||||||
("rust-rand-core" ,rust-rand-core-0.6))))
|
("rust-rand-core" ,rust-rand-core-0.6)
|
||||||
|
("rust-serde" ,rust-serde-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-serde-json" ,rust-serde-json-1))))
|
||||||
(home-page "https://crates.io/crates/rand_chacha")
|
(home-page "https://crates.io/crates/rand_chacha")
|
||||||
(synopsis "ChaCha random number generator")
|
(synopsis "ChaCha random number generator")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue