[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
83/416: gnu: Add rust-speedy.
From: |
guix-commits |
Subject: |
83/416: gnu: Add rust-speedy. |
Date: |
Fri, 14 Apr 2023 15:25:23 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 6a859731ff96eda36877c68dcbc4d15ef5c537ab
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Dec 2 21:36:52 2022 +0100
gnu: Add rust-speedy.
* gnu/packages/crates-io.scm (rust-speedy-0.8, rust-speedy-derive-0.8): New
variables.
---
gnu/packages/crates-io.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 6b458e98ed..549836f0f3 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -54990,6 +54990,57 @@ maximal amount of configuration possible intended.")
"An RSpec inspired minimal testing framework for Rust.")
(license license:expat)))
+(define-public rust-speedy-0.8
+ (package
+ (name "rust-speedy")
+ (version "0.8.5")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "speedy" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "02crzzdlaadz2ya2ij86wamsixbklhp6lbbnji6wz46rkdhqdmip"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-chrono" ,rust-chrono-0.4)
+ ("rust-glam" ,rust-glam-0.17)
+ ("rust-indexmap" ,rust-indexmap-1)
+ ("rust-memoffset" ,rust-memoffset-0.7)
+ ("rust-regex" ,rust-regex-1)
+ ("rust-smallvec" ,rust-smallvec-1)
+ ("rust-speedy-derive" ,rust-speedy-derive-0.8)
+ ("rust-uuid" ,rust-uuid-1))))
+ (home-page "https://github.com/koute/speedy")
+ (synopsis "Binary serialization framework")
+ (description
+ "This package provides a fast binary serialization framework for Rust.")
+ ;; The user can choose either license.
+ (license (list license:expat license:asl2.0))))
+
+(define-public rust-speedy-derive-0.8
+ (package
+ (name "rust-speedy-derive")
+ (version "0.8.5")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "speedy-derive" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1xx4v0h2i6ncnvi7v5y5l44xh12v4pjfkakahk6f27c0c084lazb"))))
+ (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/koute/speedy")
+ (synopsis "Binary serialization framework")
+ (description
+ "This package provides a fast binary serialization framework,
+@code{#[derive(Readable, Writable)]} support")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-spin-0.9
(package
(name "rust-spin")
- 101/416: gnu: Add rust-anes., (continued)
- 101/416: gnu: Add rust-anes., guix-commits, 2023/04/14
- 117/416: gnu: vulkan-loader: Refer to vulkan-headers in pkg-config file., guix-commits, 2023/04/14
- 127/416: gnu: rust-serde-1: Update to 1.0.152., guix-commits, 2023/04/14
- 131/416: gnu: rust-nom-6: Update to 6.2.1., guix-commits, 2023/04/14
- 38/416: gnu: glew: Omit static library., guix-commits, 2023/04/14
- 81/416: gnu: Add rust-rend., guix-commits, 2023/04/14
- 95/416: gnu: rust-tokio-util: Add 0.7.4., guix-commits, 2023/04/14
- 56/416: gnu: openboardview: Update to 9.0.3., guix-commits, 2023/04/14
- 62/416: gnu: sdl2-mixer: Update to 2.6.2., guix-commits, 2023/04/14
- 71/416: gnu: rust-tinyvec: Update to 1.6.0., guix-commits, 2023/04/14
- 83/416: gnu: Add rust-speedy.,
guix-commits <=
- 80/416: gnu: rust-bytecheck: Add 0.6.9., guix-commits, 2023/04/14
- 92/416: gnu: rust-crossbeam-deque: Update to 0.8.2., guix-commits, 2023/04/14
- 99/416: gnu: rust-rstest: Add 0.11.0., guix-commits, 2023/04/14
- 100/416: gnu: Add rust-ciborium., guix-commits, 2023/04/14
- 103/416: gnu: rust-criterion: Add 0.4.0., guix-commits, 2023/04/14
- 104/416: gnu: rust-clap-lex: Add 0.3.0., guix-commits, 2023/04/14
- 106/416: gnu: rust-os-pipe: Update to 1.1.2., guix-commits, 2023/04/14
- 107/416: gnu: rust-io-lifetimes: Add 1.0.3., guix-commits, 2023/04/14
- 115/416: gnu: less: Update to 608., guix-commits, 2023/04/14
- 126/416: gnu: rust-regex-1: Update to 1.7.1., guix-commits, 2023/04/14