diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-13 12:32:48 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-07-18 20:56:18 +0300 |
commit | 40c5ef413d058d5e5eb99e162a05f580227ba9a8 (patch) | |
tree | ff72c558cd1e629abb26b40b34e8f184cac3c19b | |
parent | 2415800b92f7e31d5abae311aa109f3c33179603 (diff) | |
download | guix-40c5ef413d058d5e5eb99e162a05f580227ba9a8.tar.gz |
gnu: rust-ref-cast-impl-1: Update to 1.0.18.
* gnu/packages/crates-io.scm (rust-ref-cast-impl-1): Update to 1.0.18. [cargo-development-inputs]: Add rust-ref-cast-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 dd8e3f0d0d..787e6f2ac4 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51560,7 +51560,7 @@ initial value.") (define-public rust-ref-cast-impl-1 (package (name "rust-ref-cast-impl") - (version "1.0.2") + (version "1.0.18") (source (origin (method url-fetch) @@ -51569,13 +51569,14 @@ initial value.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0i1i3an8si070aqg2mvz6yqc6y2pl9zhd6dd2piz17l7mdsv88bx")))) + "05kjg9g9akzb0yns255a5zvdkbwk0wa9kp1cf8k6h25nv7d57gv8")))) (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)))) + ("rust-syn" ,rust-syn-2)) + #:cargo-development-inputs (("rust-ref-cast" ,rust-ref-cast-1)))) (home-page "https://github.com/dtolnay/ref-cast") (synopsis "Derive implementation for @code{ref_cast::RefCast}") (description |