efraim pushed a commit to branch rust-team
in repository guix.
commit 06bd9e153c1fa9e01a273df03ef64c51d379620c
Author: Efraim Flashner <[email protected]>
AuthorDate: Sat Mar 16 21:28:50 2024 +0200
gnu: Add rust-abi-stable-shared-0.11.
* gnu/packages/crates-io.scm (rust-abi-stable-shared-0.11): New variable.
(rust-abi-stable-shared-0.10): Inherit from rust-abi-stable-shared-0.11.
Change-Id: I990d751924c12c2c646f97feb6ed28fb9f773bd5
---
gnu/packages/crates-io.scm | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5fec552e83..f295d1375c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -259,17 +259,17 @@ loaded at program startup.")
(description "This package contains an implementation detail of
abi_stable.")
(license (list license:expat license:asl2.0))))
-(define-public rust-abi-stable-shared-0.10
+(define-public rust-abi-stable-shared-0.11
(package
(name "rust-abi-stable-shared")
- (version "0.10.3")
+ (version "0.11.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "abi_stable_shared" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "0psaz0vghdz84vrb311g4b74d2nhrlbmwxa8if88s0bf0s4xmsgc"))))
+ (base32 "0qrbmlypvxx3zij1c6w6yykpp5pjcfx9qr2d9lzyc8y1i1vdzddj"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-core-extensions" ,rust-core-extensions-1))))
@@ -278,6 +278,21 @@ loaded at program startup.")
(description "This package contains an implementation detail of
abi_stable.")
(license (list license:expat license:asl2.0))))
+(define-public rust-abi-stable-shared-0.10
+ (package
+ (inherit rust-abi-stable-shared-0.11)
+ (name "rust-abi-stable-shared")
+ (version "0.10.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "abi_stable_shared" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0psaz0vghdz84vrb311g4b74d2nhrlbmwxa8if88s0bf0s4xmsgc"))))
+ (arguments
+ `(#:cargo-inputs (("rust-core-extensions" ,rust-core-extensions-1))))))
+
(define-public rust-abomonation-0.7
(package
(name "rust-abomonation")