mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-rkv-0.10.
* gnu/packages/crates-io.scm (rust-rkv-0.10): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7ea41275fa
commit
4c45509ebe
1 changed files with 41 additions and 0 deletions
|
@ -23798,6 +23798,47 @@ (define-public rust-rls-span-0.5
|
|||
Rust Language Server.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rkv-0.10
|
||||
(package
|
||||
(name "rust-rkv")
|
||||
(version "0.10.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rkv" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"14v7izkpwvk4ag8p9machzjq2v10xwimy5ylbra744wpyk0xp8rh"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Some test files missing.
|
||||
#:cargo-inputs
|
||||
(("rust-arrayref" ,rust-arrayref-0.3)
|
||||
("rust-bincode" ,rust-bincode-1)
|
||||
("rust-bitflags" ,rust-bitflags-1)
|
||||
("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-failure" ,rust-failure-0.1)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-lmdb-rkv" ,rust-lmdb-rkv-0.14)
|
||||
("rust-ordered-float" ,rust-ordered-float-1.0)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-url" ,rust-url-2)
|
||||
("rust-uuid" ,rust-uuid-0.8))
|
||||
#:cargo-development-inputs
|
||||
(("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-tempfile" ,rust-tempfile-3))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("lmdb" ,lmdb)))
|
||||
(home-page "https://github.com/mozilla/rkv")
|
||||
(synopsis "Typed key-value storage")
|
||||
(description "This package provides a typed key-value storage solution.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-ron-0.5
|
||||
(package
|
||||
(name "rust-ron")
|
||||
|
|
Loading…
Reference in a new issue