diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-12-28 20:23:31 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-01-06 12:19:44 +0200 |
commit | 42b8d481b0420c112a85acd5ef871605bcb10f91 (patch) | |
tree | fa7654cbe9406eaa58393d9ce1b562bafffcbdf4 | |
parent | 3821990f7a70b40b972e2fa3d6a864572e596607 (diff) | |
download | guix-42b8d481b0420c112a85acd5ef871605bcb10f91.tar.gz guix-42b8d481b0420c112a85acd5ef871605bcb10f91.zip |
gnu: rust-chrono-0.4: Update to 0.4.39.
* gnu/packages/crates-io.scm (rust-chrono-0.4): Update to 0.4.39.
[arguments]: Don't skip the tests.
[cargo-development-inputs]: Replace rust-windows-bindgen-0.56 with 0.58.
Change-Id: I8282712118e66677152352bdee4267a44305f9ce
-rw-r--r-- | gnu/packages/crates-io.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index dad4f886f9..e66df5c517 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -13043,14 +13043,14 @@ overflow and underflow checking.") (define-public rust-chrono-0.4 (package (name "rust-chrono") - (version "0.4.38") + (version "0.4.39") (source (origin (method url-fetch) (uri (crate-uri "chrono" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "009l8vc5p8750vn02z30mblg4pv2qhkbfizhfwmzc6vpy5nr67x2")))) + (base32 "09g8nf409lb184kl9j4s85k0kn8wzgjkp5ls9zid50b886fwqdky")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs @@ -13069,9 +13069,8 @@ overflow and underflow checking.") ("rust-serde-derive" ,rust-serde-derive-1) ("rust-serde-json" ,rust-serde-json-1) ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3) - ("rust-windows-bindgen" ,rust-windows-bindgen-0.56)) - #:features '("unstable-locales") - #:tests? #f)) + ("rust-windows-bindgen" ,rust-windows-bindgen-0.58)) + #:features '("unstable-locales"))) (home-page "https://github.com/chronotope/chrono") (synopsis "Date and time library for Rust") (description "Date and time library for Rust.") |