diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-24 10:29:44 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:58:37 +0200 |
commit | f221da13d986c70d786f8737b05fbdb9102b5c06 (patch) | |
tree | db3481cdba87ab0329f2d06db4037b76abe33ef6 | |
parent | 5139bf4ad92ed096508c34401f7e0ee57214b2c4 (diff) | |
download | guix-f221da13d986c70d786f8737b05fbdb9102b5c06.tar.gz guix-f221da13d986c70d786f8737b05fbdb9102b5c06.zip |
gnu: rust-serde-with-3: Update to 3.4.0.
* gnu/packages/crates-io.scm (rust-serde-with-3): Update to 3.4.0.
[source]: Add snippet to allow newer versions of dependencies.
[arguments]: Don't skip tests. Add cargo-test-flags to skip one
specific test.
[cargo-inputs]: Add rust-document-features-0.2, rust-hashbrown-0.14,
rust-indexmap-2.
[cargo-development-inputs]: Add rust-xml-rs-0.8.
Change-Id: Id053c86179998e4355d52de49040fa93f305cf61
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9b8e7ded73..6ecba674eb 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -66736,23 +66736,34 @@ for later processing.") (define-public rust-serde-with-3 (package (name "rust-serde-with") - (version "3.0.0") + (version "3.4.0") (source (origin (method url-fetch) (uri (crate-uri "serde-with" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "04w5v0siychbb7l3anx57crvv9m3w866ckwjhkq5nf1wdsmdh0lz")))) + (base32 "08sw83b6hfwzylr0waf4mc29h6fxnb02g7vkwbkjjyhvrin27kb4")) + (modules '((guix build utils))) + (snippet + '(begin (substitute* "Cargo.toml" + (("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version) + (string-append "\"^" version))))))) (build-system cargo-build-system) (arguments - `(#:tests? #f ; could not find `Deserializer` in `serde_test` + `(#:cargo-test-flags + '("--release" "--" + ;; Test fails in release tarball. + "--skip=test_serde_with_macros_dependency") #:cargo-inputs (("rust-base64" ,rust-base64-0.21) ("rust-chrono" ,rust-chrono-0.4) ("rust-doc-comment" ,rust-doc-comment-0.3) + ("rust-document-features" ,rust-document-features-0.2) + ("rust-hashbrown" ,rust-hashbrown-0.14) ("rust-hex" ,rust-hex-0.4) ("rust-indexmap" ,rust-indexmap-1) + ("rust-indexmap" ,rust-indexmap-2) ("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1) ("rust-serde-with-macros" ,rust-serde-with-macros-3) @@ -66771,7 +66782,8 @@ for later processing.") ("rust-serde-json" ,rust-serde-json-1) ("rust-serde-test" ,rust-serde-test-1) ("rust-serde-yaml" ,rust-serde-yaml-0.9) - ("rust-version-sync" ,rust-version-sync-0.9)))) + ("rust-version-sync" ,rust-version-sync-0.9) + ("rust-xml-rs" ,rust-xml-rs-0.8)))) (home-page "https://github.com/jonasbb/serde_with/") (synopsis "Custom de/serialization functions for Rust's serde") (description "This package provides custom de/serialization functions for |