gnu: Add rust-erased-serde-0.3.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-14 18:56:39 -08:00 committed by Efraim Flashner
parent 0dd2eb4ad1
commit 99af41fa40
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1768,6 +1768,34 @@ (define-public rust-envmnt-0.6
"Environment variables utility functions.")
(license license:asl2.0)))
(define-public rust-erased-serde-0.3
(package
(name "rust-erased-serde")
(version "0.3.9")
(source
(origin
(method url-fetch)
(uri (crate-uri "erased-serde" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0q7bnxs5zskfq5iillig55g7891dllcxh2p8y8k1p2j72syf9viv"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-serde" ,rust-serde-1.0))
#:cargo-development-inputs
(("rust-serde-cbor" ,rust-serde-cbor-0.10)
("rust-serde-derive" ,rust-serde-derive-1.0)
("rust-serde-json" ,rust-serde-json-1.0))))
(home-page "https://github.com/dtolnay/erased-serde")
(synopsis "Type-erased Serialize and Serializer traits")
(description
"Type-erased Serialize and Serializer traits.")
(license (list license:asl2.0 license:expat))))
(define-public rust-fallible-iterator-0.2
(package
(name "rust-fallible-iterator")