efraim pushed a commit to branch rust-team
in repository guix.
commit 41da349136ed7347708cb9a7d9d8924ffef214b0
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Dec 29 22:12:47 2024 +0200
gnu: Add rust-calamine-0.26.
* gnu/packages/crates-io.scm (rust-calamine-0.26): New variable.
(rust-calamine-0.24): Inherit from rust-calamine-0.26.
Change-Id: I76a92b5b002f186c9ed8b9288aa6ba20c4dbce3f
---
gnu/packages/crates-io.scm | 42 +++++++++++++++++++++++++++++++++++-------
1 file changed, 35 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b1f36fd55d..1fcb692935 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -11021,17 +11021,17 @@ Tagging Specification. This library comes with
functionality to, among
others, add a tag, ensure/check a tag exists and get the state of a tag.")
(license license:expat)))
-(define-public rust-calamine-0.24
+(define-public rust-calamine-0.26
(package
(name "rust-calamine")
- (version "0.24.0")
+ (version "0.26.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "calamine" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "1nilccwz0vqzzxjxcr06pi25k80j2wz0f89mwg1v3igx4r932fla"))))
+ (base32 "1cbfjwb37c28gkb42wsgpp93fxsrzhxgjjza0hc7yp9cmywld1hk"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Doc tests segfault.
@@ -11040,14 +11040,14 @@ others, add a tag, ensure/check a tag exists and get
the state of a tag.")
("rust-codepage" ,rust-codepage-0.1)
("rust-encoding-rs" ,rust-encoding-rs-0.8)
("rust-log" ,rust-log-0.4)
- ("rust-once-cell" ,rust-once-cell-1)
("rust-quick-xml" ,rust-quick-xml-0.31)
("rust-serde" ,rust-serde-1)
- ("rust-zip" ,rust-zip-0.6))
- #:cargo-development-inputs (("rust-env-logger" ,rust-env-logger-0.10)
+ ("rust-zip" ,rust-zip-2))
+ #:cargo-development-inputs (("rust-env-logger" ,rust-env-logger-0.11)
("rust-glob" ,rust-glob-0.3)
+ ("rust-rstest" ,rust-rstest-0.21)
("rust-serde-derive" ,rust-serde-derive-1)
- ("rust-sha256" ,rust-sha256-1))))
+ ("rust-sha2" ,rust-sha2-0.10))))
(home-page "https://github.com/tafia/calamine")
(synopsis "Reader and deserializer for spreadsheet files")
(description
@@ -11055,6 +11055,34 @@ others, add a tag, ensure/check a tag exists and get
the state of a tag.")
spreadsheet file.")
(license license:expat)))
+(define-public rust-calamine-0.24
+ (package
+ (inherit rust-calamine-0.26)
+ (name "rust-calamine")
+ (version "0.24.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "calamine" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1nilccwz0vqzzxjxcr06pi25k80j2wz0f89mwg1v3igx4r932fla"))))
+ (arguments
+ `(#:tests? #f ; Doc tests segfault.
+ #:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-codepage" ,rust-codepage-0.1)
+ ("rust-encoding-rs" ,rust-encoding-rs-0.8)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-once-cell" ,rust-once-cell-1)
+ ("rust-quick-xml" ,rust-quick-xml-0.31)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-zip" ,rust-zip-0.6))
+ #:cargo-development-inputs (("rust-env-logger" ,rust-env-logger-0.10)
+ ("rust-glob" ,rust-glob-0.3)
+ ("rust-serde-derive" ,rust-serde-derive-1)
+ ("rust-sha256" ,rust-sha256-1))))))
+
(define-public rust-calamine-0.18
(package
(inherit rust-calamine-0.24)