~ruther/guix-local

2d91350bd033d1804a8813978ea1c32e9d89105c — Ricardo Wurmus 1 year, 1 month ago 7173c21
gnu: Add rust-object-store-0.11.

* gnu/packages/crates-io.scm (rust-object-store-0.11): New variable.

Change-Id: If6009cfde48eeffde5bc4055c943c4fe8a6ff797
1 files changed, 47 insertions(+), 0 deletions(-)

M gnu/packages/crates-io.scm
M gnu/packages/crates-io.scm => gnu/packages/crates-io.scm +47 -0
@@ 48822,6 48822,53 @@ file formats.")
attach/detach semantics.")
    (license (list license:expat license:asl2.0))))

(define-public rust-object-store-0.11
  (package
    (name "rust-object-store")
    (version "0.11.2")
    (source
     (origin
       (method url-fetch)
       (uri (crate-uri "object_store" version))
       (file-name (string-append name "-" version ".tar.gz"))
       (sha256
        (base32 "1bywk2bbjpvr26581rs44csl6myiw0cr6gqnw76zlmhsjrlcpz1w"))))
    (build-system cargo-build-system)
    (arguments
     `(#:skip-build? #t
       #:cargo-inputs
       (("rust-async-trait" ,rust-async-trait-0.1)
        ("rust-base64" ,rust-base64-0.22)
        ("rust-bytes" ,rust-bytes-1)
        ("rust-chrono" ,rust-chrono-0.4)
        ("rust-futures" ,rust-futures-0.3)
        ("rust-httparse" ,rust-httparse-1)
        ("rust-humantime" ,rust-humantime-2)
        ("rust-hyper" ,rust-hyper-1)
        ("rust-itertools" ,rust-itertools-0.13)
        ("rust-md-5" ,rust-md-5-0.10)
        ("rust-parking-lot" ,rust-parking-lot-0.12)
        ("rust-percent-encoding" ,rust-percent-encoding-2)
        ("rust-quick-xml" ,rust-quick-xml-0.37)
        ("rust-rand" ,rust-rand-0.8)
        ("rust-reqwest" ,rust-reqwest-0.12)
        ("rust-ring" ,rust-ring-0.17)
        ("rust-rustls-pemfile" ,rust-rustls-pemfile-2)
        ("rust-serde" ,rust-serde-1)
        ("rust-serde-json" ,rust-serde-json-1)
        ("rust-snafu" ,rust-snafu-0.8)
        ("rust-tokio" ,rust-tokio-1)
        ("rust-tracing" ,rust-tracing-0.1)
        ("rust-url" ,rust-url-2)
        ("rust-walkdir" ,rust-walkdir-2))))
    (home-page "https://github.com/apache/arrow-rs/tree/main/object_store")
    (synopsis "Generic object store interface")
    (description
     "This package provides a generic object store interface for uniformly
interacting with AWS S3, Google Cloud Storage, Azure Blob Storage and local
files.")
    (license (list license:expat license:asl2.0))))

(define-public rust-object-store-0.9
  (package
    (name "rust-object-store")