me
/
guix
Archived
1
0
Fork 0

gnu: rust-trybuild-1: Update to 1.0.81.

* gnu/packages/crates-io.scm (rust-trybuild-1): Update to 1.0.81.
[cargo-development-inputs]: Add rust-automod-1.
Efraim Flashner 2023-07-13 18:43:55 +03:00
parent 15d0ae202d
commit 24801f252f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 3 deletions

View File

@ -70816,14 +70816,14 @@ the Trust-DNS client to use rustls for TLS.")
(define-public rust-trybuild-1
(package
(name "rust-trybuild")
(version "1.0.77")
(version "1.0.81")
(source
(origin
(method url-fetch)
(uri (crate-uri "trybuild" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "04rlcx55q7qbc17hv4znypwnm5n5d5ynbh5vsca8wk0nyakaakd4"))))
(base32 "0ab7ahdx563n6kbm14pm3qnxq4fp06pz42nh5ii4acvlzycnwdh4"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
@ -70834,7 +70834,8 @@ the Trust-DNS client to use rustls for TLS.")
("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-termcolor" ,rust-termcolor-1))))
("rust-termcolor" ,rust-termcolor-1))
#:cargo-development-inputs (("rust-automod" ,rust-automod-1))))
(home-page "https://github.com/dtolnay/trybuild")
(synopsis "Test harness for ui tests of compiler diagnostics")
(description