mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 17:46:43 +01:00
gnu: rust-base64-0.13: Fix inputs.
* gnu/packages/crates-io.scm(rust-base64-0.13)[arguments]<#:phases>: Substitute rust-criterion version 0.3.2 to 0.3.3. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
fa5ac1d8ac
commit
77a0097b21
1 changed files with 7 additions and 1 deletions
|
@ -4174,7 +4174,13 @@ (define-public rust-base64-0.13
|
|||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-rand" ,rust-rand-0.6)
|
||||
("rust-structopt" ,rust-structopt-0.3))))
|
||||
("rust-structopt" ,rust-structopt-0.3))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-criterion-minor-version
|
||||
(lambda* _
|
||||
(substitute* "Cargo.toml"
|
||||
(("0.3.2") "0.3.3")))))))
|
||||
(home-page "https://github.com/marshallpierce/rust-base64")
|
||||
(synopsis "Encodes and decodes base64 as bytes or utf8")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue