[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
70/98: gnu: rust-bson-2: Update to 2.9.0.
From: |
guix-commits |
Subject: |
70/98: gnu: rust-bson-2: Update to 2.9.0. |
Date: |
Tue, 2 Apr 2024 07:22:06 -0400 (EDT) |
efraim pushed a commit to branch rust-team
in repository guix.
commit aeb53980ba5383244f4b586432d511396f3b4811
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Apr 1 20:58:13 2024 +0300
gnu: rust-bson-2: Update to 2.9.0.
* gnu/packages/crates-io.scm (rust-bson-2): Update to 2.9.0.
[arguments]: Don't skip the build. Skip the tests.
[cargo-inputs]: Add rust-bitvec-1, rust-js-sys-0.3, rust-once-cell-1,
rust-serde-with-1, rust-serde-with-3, rust-time-0.3, rust-uuid-1.
Replace rust-ahash-0.7 with 0.8, rust-indexmap-1 with 2.
[cargo-development-inputs]: Add rust-assert-matches-1, rust-chrono-0.4,
rust-criterion-0.3, rust-getrandom-0.2, rust-pretty-assertions-0.6,
rust-proptest-1, rust-serde-bytes-0.11.
Change-Id: Ice8a1ba421296aee659300e35b4ea142c3d8e281
---
gnu/packages/crates-io.scm | 56 ++++++++++++++++++++++++++++------------------
1 file changed, 34 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5996c15280..13d821d49a 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -9118,33 +9118,45 @@ almost the same speed for encoding: about 3% slower
when encoding 32 bytes.
(define-public rust-bson-2
(package
(name "rust-bson")
- (version "2.0.1")
+ (version "2.9.0")
(source
- (origin
- (method url-fetch)
- (uri (crate-uri "bson" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "0ff1xj1vgh2l6sl5gqhkgsfkbhh11jkwd5wf3h0f0mrbg1kd8n7z"))))
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "bson" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "08h2v3yqydx1df27zmkavf746495b0h5rckbd62ll5cw3j64c8ff"))))
(build-system cargo-build-system)
(arguments
- `(#:skip-build? #t
- #:cargo-inputs
- (("rust-ahash" ,rust-ahash-0.7)
- ("rust-base64" ,rust-base64-0.13)
- ("rust-chrono" ,rust-chrono-0.4)
- ("rust-hex" ,rust-hex-0.4)
- ("rust-indexmap" ,rust-indexmap-1)
- ("rust-lazy-static" ,rust-lazy-static-1)
- ("rust-rand" ,rust-rand-0.8)
- ("rust-serde" ,rust-serde-1)
- ("rust-serde-bytes" ,rust-serde-bytes-0.11)
- ("rust-serde-json" ,rust-serde-json-1)
- ("rust-uuid" ,rust-uuid-0.8))))
+ `(#:tests? #f ; file not found for module `tests`
+ #:cargo-inputs (("rust-ahash" ,rust-ahash-0.8)
+ ("rust-base64" ,rust-base64-0.13)
+ ("rust-bitvec" ,rust-bitvec-1)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-hex" ,rust-hex-0.4)
+ ("rust-indexmap" ,rust-indexmap-2)
+ ("rust-js-sys" ,rust-js-sys-0.3)
+ ("rust-once-cell" ,rust-once-cell-1)
+ ("rust-rand" ,rust-rand-0.8)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-bytes" ,rust-serde-bytes-0.11)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-serde-with" ,rust-serde-with-1)
+ ("rust-serde-with" ,rust-serde-with-3)
+ ("rust-time" ,rust-time-0.3)
+ ("rust-uuid" ,rust-uuid-1)
+ ("rust-uuid" ,rust-uuid-0.8))
+ #:cargo-development-inputs
+ (("rust-assert-matches" ,rust-assert-matches-1)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-criterion" ,rust-criterion-0.3)
+ ("rust-getrandom" ,rust-getrandom-0.2)
+ ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
+ ("rust-proptest" ,rust-proptest-1)
+ ("rust-serde-bytes" ,rust-serde-bytes-0.11))))
(home-page "https://github.com/mongodb/bson-rust")
(synopsis "Encoding and decoding support for BSON in Rust")
- (description
- "This crate provides encoding and decoding support for BSON.")
+ (description "This crate provides encoding and decoding support for BSON.")
(license license:expat)))
(define-public rust-bstr-1
- 28/98: gnu: Add rust-glutin-0.29., (continued)
- 28/98: gnu: Add rust-glutin-0.29., guix-commits, 2024/04/02
- 65/98: gnu: rust-cookie-0.11: Update to 0.11.5., guix-commits, 2024/04/02
- 20/98: gnu: rust-calloop-0.6: Allow build., guix-commits, 2024/04/02
- 27/98: gnu: Add rust-glium-0.32., guix-commits, 2024/04/02
- 57/98: gnu: rust-tinyvec-macros-0.1: Update to 0.1.1., guix-commits, 2024/04/02
- 35/98: gnu: rust-getrandom-0.1: Update to 0.1.16., guix-commits, 2024/04/02
- 44/98: gnu: rust-parking-lot-core-0.7: Update to 0.7.3., guix-commits, 2024/04/02
- 33/98: gnu: rust-dirs-sys-next-0.1: Update to 0.1.2., guix-commits, 2024/04/02
- 63/98: gnu: rust-aes-0.7: Don't skip the build., guix-commits, 2024/04/02
- 69/98: gnu: rust-bitstream-io-1: Update to 1.10.0., guix-commits, 2024/04/02
- 70/98: gnu: rust-bson-2: Update to 2.9.0.,
guix-commits <=
- 71/98: gnu: rust-password-hash-0.3: Build with newer dependencies., guix-commits, 2024/04/02
- 77/98: gnu: rust-defmt-parser-0.3: Update to 0.3.4., guix-commits, 2024/04/02
- 79/98: gnu: rust-defmt-0.3: Update to 0.3.6., guix-commits, 2024/04/02
- 80/98: gnu: rust-dyn-clone-1: Update to 1.0.17., guix-commits, 2024/04/02
- 83/98: gnu: rust-trybuild-1: Update to 1.0.91., guix-commits, 2024/04/02
- 55/98: gnu: rust-thread-id-4: Update to 4.2.1., guix-commits, 2024/04/02
- 58/98: gnu: rust-wide-0.7: Update to 0.7.15., guix-commits, 2024/04/02
- 34/98: gnu: rust-getrandom-0.2: Update to 0.2.12., guix-commits, 2024/04/02
- 61/98: gnu: rust-ariadne-0.1: Downgrade to 0.1.5., guix-commits, 2024/04/02
- 68/98: gnu: rust-built-0.5: Downgrade to 0.5.2., guix-commits, 2024/04/02