diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-17 16:24:05 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:42:43 +0300 |
commit | 14971b87b436e974d74371ff61c68bbb207003a9 (patch) | |
tree | 7583de5abfd4cea22d3490cd4478ad76b0448f5a /gnu | |
parent | 9fe68563863f26ec99b37ff2ee1566cd1dd7a9c3 (diff) | |
download | guix-14971b87b436e974d74371ff61c68bbb207003a9.tar guix-14971b87b436e974d74371ff61c68bbb207003a9.tar.gz |
gnu: rust-include-flate-codegen-0.1: Update to 0.1.4.
* gnu/packages/crates-io.scm (rust-include-flate-codegen-0.1): Update to
0.1.4.
[arguments]: Replace rust-libflate-0.1 with 1, rust-proc-macro2-0.4 with
1, rust-quote-0.6 with 1, rust-syn-0.15 with 1.
Change-Id: I891271317b7ba165ba878d98116aa3cdac0a7d4e
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bde12d51e7..2dabf58781 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -31396,23 +31396,23 @@ with compile-time deflation and runtime lazy inflation.") (define-public rust-include-flate-codegen-0.1 (package (name "rust-include-flate-codegen") - (version "0.1.3") + (version "0.1.4") (source (origin (method url-fetch) (uri (crate-uri "include-flate-codegen" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1mbw6fcczmfw4dabps4l90mdn2wdy9zhqwh60xx4fjcxqfsm9ksb")))) + (base32 "1s34ssq0l3d2sn8n3mxmkz3jbm600fbckd0213mjjcgs34a6wz9s")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t + `(#:skip-build? #t ; `#![feature]` may not be used on the stable release channel #:cargo-inputs - (("rust-libflate" ,rust-libflate-0.1) + (("rust-libflate" ,rust-libflate-1) ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5) - ("rust-proc-macro2" ,rust-proc-macro2-0.4) - ("rust-quote" ,rust-quote-0.6) - ("rust-syn" ,rust-syn-0.15)))) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) (home-page "https://github.com/SOF3/include-flate") (synopsis "Macro codegen for the @code{include-flate} crate") (description |