diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-13 12:26:36 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:38:05 +0300 |
commit | 9a3adafeb0c90d8f9319ecab85bc3e89c76f762a (patch) | |
tree | fdd9c22ab181348d9c238f092c4ad7557103636e /gnu | |
parent | 86eda7f7cdd36faf3e6011f456bf4ef5aa8ade2e (diff) | |
download | guix-9a3adafeb0c90d8f9319ecab85bc3e89c76f762a.tar guix-9a3adafeb0c90d8f9319ecab85bc3e89c76f762a.tar.gz |
gnu: rust-automod-1: Update to 1.0.11.
* gnu/packages/crates-io.scm (rust-automod-1): Update to 1.0.11.
[cargo-inputs]: Replace rust-syn-1 with 2.
[arguments]: Don't skip tests.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cd733728c4..fff5df013d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5649,7 +5649,7 @@ bytes or encoder from file extension.") (define-public rust-automod-1 (package (name "rust-automod") - (version "1.0.0") + (version "1.0.11") (source (origin (method url-fetch) @@ -5658,15 +5658,13 @@ bytes or encoder from file extension.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1z8kdbvvz0k8mfs45mvs16lr9xj59cdcp0sm45fawfh93gai4mhg")))) + "057sa45859nb8arbshkqc6va8b8jf5a8vx6zr739viibqbj989md")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) ("rust-quote" ,rust-quote-1) - ("rust-syn" ,rust-syn-1)) - ;; Tests not included in tar. - #:tests? #f)) + ("rust-syn" ,rust-syn-2)))) (home-page "https://github.com/dtolnay/automod") (synopsis "Pull in every source file in a directory as a module") (description "Pull in every source file in a directory as a module.") |