me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rmp-serde-0.14.

* gnu/packages/crates-io.scm (rust-rmp-serde-0.14): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
aecepoglu 2021-02-04 15:13:49 +01:00 committed by Nicolas Goaziou
parent 6e5fcf2da9
commit c7e71a5e01
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -28946,6 +28946,29 @@ writers and readers for primitive values with direct mapping between binary
MessagePack format.")
(license license:expat)))
(define-public rust-rmp-serde-0.14
(package
(name "rust-rmp-serde")
(version "0.14.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "rmp-serde" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1n2jn3yj5zbjhz5lah98yylpzhfc1c0h5fcksjp75r3gj86dgrsc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-byteorder" ,rust-byteorder-1)
("rust-rmp" ,rust-rmp-0.8)
("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/3Hren/msgpack-rust")
(synopsis "Serde bindings for RMP")
(description "This crate provides Serde bindings for RMP.")
(license license:expat)))
(define-public rust-ron-0.5
(package
(name "rust-ron")