gnu: Add rust-varbincode-0.1.

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

Change-Id: I067935391fdb5f094cecf30909fcc3e56435dfaf
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
VÖRÖSKŐI András 2024-02-24 21:39:28 +01:00 committed by Efraim Flashner
parent 04fba2ffac
commit 4eb6591282
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -83073,6 +83073,30 @@ (define-public rust-value-trait-0.8
(description "This package provides traits to deal with JSONesque values.")
(license (list license:asl2.0 license:expat))))
(define-public rust-varbincode-0.1
(package
(name "rust-varbincode")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "varbincode" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "17vgwalm7a1lryjj565p4rnx5h3hr8vwm5504r92s7j41f8gl4mp"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
("rust-leb128" ,rust-leb128-0.2)
("rust-serde" ,rust-serde-1))
#:cargo-development-inputs (("rust-serde-derive" ,rust-serde-derive-1))))
(home-page "https://github.com/wez/varbincode")
(synopsis "Binary encoder and decoder with variable length integer")
(description
"This package provides a binary encoder / decoder with variable length
integer encoding implementation in Rust.")
(license license:expat)))
(define-public rust-vcpkg-0.2
(package
(name "rust-vcpkg")