[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59670] [PATCH 12/50] gnu: Add rust-parking-lot-0.12.
From: |
( |
Subject: |
[bug#59670] [PATCH 12/50] gnu: Add rust-parking-lot-0.12. |
Date: |
Tue, 29 Nov 2022 07:00:26 +0000 |
* gnu/packages/common/rust.scm (rust-parking-lot-0.12): New
variable.
(rust-parking-lot-0.11): Inherit from RUST-PARKING-LOT-0.12.
---
gnu/packages/crates-io.scm | 50 +++++++++++++++++++++++++-------------
1 file changed, 33 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 04083deeb5..0507e43122 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -38362,27 +38362,24 @@ (define-public rust-parking-1
(sha256
(base32 "0z6q9rxm98vrp3fimw8b5syzwgf8l0pnn6y0cqm4lbblf7r01cvc"))))))
-(define-public rust-parking-lot-0.11
+(define-public rust-parking-lot-0.12
(package
(name "rust-parking-lot")
- (version "0.11.2")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "parking_lot" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "16gzf41bxmm10x82bla8d6wfppy9ym3fxsmdjyvn61m66s0bf5vx"))))
+ (version "0.12.1")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "parking_lot" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "13r2xk7mnxfc5g0g6dkdxqdqad99j7s7z8zhzz4npw5r0g0v4hip"))))
(build-system cargo-build-system)
(arguments
- `(#:skip-build? #t
- #:cargo-inputs
- (("rust-instant" ,rust-instant-0.1)
- ("rust-lock-api" ,rust-lock-api-0.4)
- ("rust-parking-lot-core" ,rust-parking-lot-core-0.8))
- #:cargo-development-inputs
- (("rust-bincode" ,rust-bincode-1)
- ("rust-rand" ,rust-rand-0.8))))
+ (list #:skip-build? #t
+ #:cargo-inputs
+ `(("rust-instant" ,rust-instant-0.1)
+ ("rust-lock-api" ,rust-lock-api-0.4)
+ ("rust-parking-lot-core" ,rust-parking-lot-core-0.8))))
(home-page "https://github.com/Amanieu/parking_lot")
(synopsis
"Efficient implementations of the standard synchronization primitives")
@@ -38391,6 +38388,25 @@ (define-public rust-parking-lot-0.11
of the standard synchronization primitives.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-parking-lot-0.11
+ (package
+ (inherit rust-parking-lot-0.12)
+ (name "rust-parking-lot")
+ (version "0.11.2")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "parking_lot" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "16gzf41bxmm10x82bla8d6wfppy9ym3fxsmdjyvn61m66s0bf5vx"))))
+ (arguments
+ (list #:skip-build? #t
+ #:cargo-inputs
+ `(("rust-instant" ,rust-instant-0.1)
+ ("rust-lock-api" ,rust-lock-api-0.4)
+ ("rust-parking-lot-core" ,rust-parking-lot-core-0.8))))))
+
(define-public rust-parking-lot-0.10
(package
(name "rust-parking-lot")
--
2.38.1
- [bug#59670] [PATCH 01/50] gnu: Add rust-nix-0.24., (continued)
- [bug#59670] [PATCH 01/50] gnu: Add rust-nix-0.24., (, 2022/11/29
- [bug#59670] [PATCH 03/50] gnu: Add rust-propfuzz-0.0.1., (, 2022/11/29
- [bug#59670] [PATCH 07/50] gnu: Add rust-askama-shared-0.12., (, 2022/11/29
- [bug#59670] [PATCH 06/50] gnu: rust-askama-escape: Update to 0.10.3., (, 2022/11/29
- [bug#59670] [PATCH 09/50] gnu: Add rust-askama-0.11., (, 2022/11/29
- [bug#59670] [PATCH 02/50] gnu: Add rust-propfuzz-macro-0.0.1., (, 2022/11/29
- [bug#59670] [PATCH 08/50] gnu: Add rust-askama-derive-0.11., (, 2022/11/29
- [bug#59670] [PATCH 10/50] gnu: Add rust-rstest-macros-0.14., (, 2022/11/29
- [bug#59670] [PATCH 15/50] gnu: Add rust-fs-err-2., (, 2022/11/29
- [bug#59670] [PATCH 13/50] gnu: rust-tokio-1: Update to 1.22.0., (, 2022/11/29
- [bug#59670] [PATCH 12/50] gnu: Add rust-parking-lot-0.12.,
( <=
- [bug#59670] [PATCH 05/50] gnu: Add rust-comrak-0.12., (, 2022/11/29
- [bug#59670] [PATCH 04/50] gnu: Add rust-unicode-categories-0.1., (, 2022/11/29
- [bug#59670] [PATCH 16/50] gnu: Add rust-windows-aarch64-gnullvm-0.42., (, 2022/11/29
- [bug#59670] [PATCH 14/50] gnu: rust-autocfg-1: Update to 1.1.0., (, 2022/11/29
- [bug#59670] [PATCH 11/50] gnu: Add rust-rstest-0.15., (, 2022/11/29
- [bug#59670] [PATCH 17/50] gnu: Add rust-windows-aarch64-msvc-0.42., (, 2022/11/29
- [bug#59670] [PATCH 18/50] gnu: Add rust-windows-i686-gnu-0.42., (, 2022/11/29
- [bug#59670] [PATCH 20/50] gnu: Add rust-windows-x86-64-gnu-0.42., (, 2022/11/29
- [bug#59670] [PATCH 21/50] gnu: Add rust-windows-x86-64-gnullvm-0.42., (, 2022/11/29
- [bug#59670] [PATCH 22/50] gnu: Add rust-windows-x86-64-msvc-0.42., (, 2022/11/29