gnu: Add rust-csv-index-0.1.

* gnu/packages/crates-io.scm (rust-csv-index-0.1): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Paul A. Patience 2022-11-27 04:33:35 +00:00 committed by Christopher Baines
parent 34cf5e06a9
commit 36bd9121d6
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -30,6 +30,7 @@
;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -14539,6 +14540,29 @@ (define-public rust-csv-core-0.1
"Bare bones CSV parsing with no_std support.")
(license (list license:unlicense license:expat))))
(define-public rust-csv-index-0.1
(package
(name "rust-csv-index")
(version "0.1.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "csv-index" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "01048y84y0bakqm0x4y1svjv6lzc753b9q598xp7xgcqrdgi6x7j"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-byteorder" ,rust-byteorder-1)
("rust-csv" ,rust-csv-1))))
(home-page "https://github.com/BurntSushi/rust-csv")
(synopsis "On-disk CSV indexing data structures")
(description
"A collection of data structures for indexing CSV data, with a focus on
data structures that can be easily serialized to and deserialized from disk.")
(license (list license:unlicense license:expat))))
(define-public rust-cstr-core-0.2
(package
(name "rust-cstr-core")