[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/18: gnu: rust-bytecheck: Add 0.6.9.
From: |
guix-commits |
Subject: |
14/18: gnu: rust-bytecheck: Add 0.6.9. |
Date: |
Fri, 2 Dec 2022 16:48:43 -0500 (EST) |
mbakke pushed a commit to branch staging
in repository guix.
commit 08e9b520ad5fcc9a69634c1628d978af7c41da65
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Dec 2 21:24:36 2022 +0100
gnu: rust-bytecheck: Add 0.6.9.
* gnu/packages/crates-io.scm (rust-bytecheck-0.6,
rust-bytecheck-derive-0.6):
New variables.
(rust-bytecheck-0.5, rust-bytecheck-derive-0.5): Inherit accordingly.
---
gnu/packages/crates-io.scm | 61 +++++++++++++++++++++++++++++++++++++---------
1 file changed, 49 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 267fdb46c6..979d66124d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -8381,8 +8381,33 @@ of built-in fundamental numeric types.")
"This package provides a library for interaction with units of bytes.")
(license license:expat)))
+(define-public rust-bytecheck-0.6
+ (package
+ (name "rust-bytecheck")
+ (version "0.6.9")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "bytecheck" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0vs0a8p3bpaz3vc15zknqkd5ajgzgswf2bmd1mbwdbdm28naq76i"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-bytecheck-derive" ,rust-bytecheck-derive-0.6)
+ ("rust-ptr-meta" ,rust-ptr-meta-0.1)
+ ("rust-simdutf8" ,rust-simdutf8-0.1)
+ ("rust-uuid" ,rust-uuid-1))))
+ (home-page "https://github.com/rkyv/bytecheck")
+ (synopsis "Type validation framework")
+ (description "This package provides a type validation framework for
+Rust.")
+ (license license:expat)))
+
(define-public rust-bytecheck-0.5
(package
+ (inherit rust-bytecheck-0.6)
(name "rust-bytecheck")
(version "0.5.2")
(source
@@ -8392,22 +8417,40 @@ of built-in fundamental numeric types.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0q11ap6nqj0rsc8ypwjh918916zlrcrzdgqm175gnpb2yn9axyh1"))))
- (build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bytecheck-derive" ,rust-bytecheck-derive-0.5)
("rust-log" ,rust-log-0.4)
("rust-ptr-meta" ,rust-ptr-meta-0.1)
- ("rust-simdutf8" ,rust-simdutf8-0.1))))
+ ("rust-simdutf8" ,rust-simdutf8-0.1))))))
+
+(define-public rust-bytecheck-derive-0.6
+ (package
+ (name "rust-bytecheck-derive")
+ (version "0.6.9")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "bytecheck_derive" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1gxr63mi91rrjzfzcb8pfwsnarp9i2w1n168nc05aq4fx7mpdr8k"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-proc-macro2" ,rust-proc-macro2-1)
+ ("rust-quote" ,rust-quote-1)
+ ("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/rkyv/bytecheck")
- (synopsis "Type validation framework")
- (description "This package provides a type validation framework for
-Rust.")
+ (synopsis "Derive macro for bytecheck")
+ (description "This package provides a Derive macro for bytecheck, the type
+validation framework for Rust.")
(license license:expat)))
(define-public rust-bytecheck-derive-0.5
(package
+ (inherit rust-bytecheck-derive-0.6)
(name "rust-bytecheck-derive")
(version "0.5.2")
(source
@@ -8417,17 +8460,11 @@ Rust.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0grbkwwv5j91n7zrimci6fh4k79flxga3mkjg50jysnyraizi088"))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
- ("rust-syn" ,rust-syn-1))))
- (home-page "https://github.com/rkyv/bytecheck")
- (synopsis "Derive macro for bytecheck")
- (description "This package provides a Derive macro for bytecheck, the type
-validation framework for Rust.")
- (license license:expat)))
+ ("rust-syn" ,rust-syn-1))))))
(define-public rust-bytecount-0.6
(package
- 02/18: gnu: rust-x11: Update to 2.20.1., (continued)
- 02/18: gnu: rust-x11: Update to 2.20.1., guix-commits, 2022/12/02
- 04/18: gnu: rust-arbitrary: Update to 1.2.0., guix-commits, 2022/12/02
- 03/18: gnu: rust-xcb: Add 1.2.0., guix-commits, 2022/12/02
- 05/18: gnu: rust-tinyvec: Update to 1.6.0., guix-commits, 2022/12/02
- 06/18: gnu: Add rust-uuid-macro-internal., guix-commits, 2022/12/02
- 07/18: gnu: rust-crypto-common: Update to 0.1.6., guix-commits, 2022/12/02
- 08/18: gnu: rust-cookie: Move versions closer together., guix-commits, 2022/12/02
- 11/18: gnu: rust-bytemuck-derive: Update to 1.3.0., guix-commits, 2022/12/02
- 09/18: gnu: rust-const-oid: Add 0.9.1., guix-commits, 2022/12/02
- 12/18: gnu: rust-bytemuck: Update to 1.12.3., guix-commits, 2022/12/02
- 14/18: gnu: rust-bytecheck: Add 0.6.9.,
guix-commits <=
- 16/18: gnu: rust-rkyv: Add 0.7.39., guix-commits, 2022/12/02
- 17/18: gnu: Add rust-speedy., guix-commits, 2022/12/02
- 10/18: gnu: rust-typenum: Update to 1.15.0., guix-commits, 2022/12/02
- 15/18: gnu: Add rust-rend., guix-commits, 2022/12/02
- 13/18: gnu: rust-uuid: Add 1.2.2., guix-commits, 2022/12/02
- 18/18: gnu: rust-ordered-float: Add 3.4.0., guix-commits, 2022/12/02