mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
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:
parent
0dd2eb4ad1
commit
99af41fa40
1 changed files with 28 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue