gnu: Add rust-arrow-4.

* gnu/packages/crates-io.scm (rust-arrow-4): New variable.
This commit is contained in:
Nicolas Goaziou 2021-06-15 13:46:14 +02:00
parent 55312e9fe0
commit abd11a9bdd
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -2354,6 +2354,45 @@ (define-public rust-arrayvec-0.4
("rust-matches" ,rust-matches-0.1)
("rust-serde-test" ,rust-serde-test-1))))))
(define-public rust-arrow-4
(package
(name "rust-arrow")
(version "4.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "arrow" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0qw6940mfqz2z6fq83sqkrx3kp4zwpadld0bv0lln3znq3hip0ck"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cfg-aliases" ,rust-cfg-aliases-0.1)
("rust-chrono" ,rust-chrono-0.4)
("rust-csv" ,rust-csv-1)
("rust-flatbuffers" ,rust-flatbuffers-0.8)
("rust-hex" ,rust-hex-0.4)
("rust-indexmap" ,rust-indexmap-1)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-lexical-core" ,rust-lexical-core-0.7)
("rust-multiversion" ,rust-multiversion-0.6)
("rust-num" ,rust-num-0.4)
("rust-packed-simd-2" ,rust-packed-simd-2-0.3)
("rust-prettytable-rs" ,rust-prettytable-rs-0.8)
("rust-rand" ,rust-rand-0.7)
("rust-regex" ,rust-regex-1)
("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/apache/arrow-rs")
(synopsis "Rust implementation of Apache Arrow")
(description
"This crate is a Rust implementation of Apache Arrow in-memory columnar
format.")
(license license:asl2.0)))
(define-public rust-askama-escape-0.10
(package
(name "rust-askama-escape")