diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-13 18:43:55 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:38:08 +0300 |
commit | 24801f252f39cbe2cd51b1938333282b0379568e (patch) | |
tree | bb7d00b2edbdfba1707a94cbff33199e56fb52bf | |
parent | 15d0ae202debe2d6aab7f14d775a770eef5a856a (diff) | |
download | guix-24801f252f39cbe2cd51b1938333282b0379568e.tar guix-24801f252f39cbe2cd51b1938333282b0379568e.tar.gz |
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.
-rw-r--r-- | gnu/packages/crates-io.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b96393c9bb..1f7a03c18d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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 |