gnu: Add rust-serde-big-array-0.1.
* gnu/packages/crates-io.scm (rust-serde-big-array-0.1): New variable.
This commit is contained in:
parent
c83dcf24ba
commit
3230371e06
1 changed files with 25 additions and 2 deletions
|
@ -10842,8 +10842,31 @@ (define-public rust-serde-0.8
|
||||||
(("rust-clippy" ,rust-clippy-0.0))
|
(("rust-clippy" ,rust-clippy-0.0))
|
||||||
#:tests? #f))))
|
#:tests? #f))))
|
||||||
|
|
||||||
;; Circular dev dependency on bincode.
|
(define-public rust-serde-big-array-0.1
|
||||||
;; Probably not going away: https://github.com/rust-lang/cargo/issues/4242
|
(package
|
||||||
|
(name "rust-serde-big-array")
|
||||||
|
(version "0.1.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "serde-big-array" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0gkyqxk760mp1lfcg6lhjk95ajc89nr0qdd0vl4ic0g8pyxcy9mr"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-serde" ,rust-serde-1.0)
|
||||||
|
("rust-serde-derive" ,rust-serde-derive-1.0))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-serde-json" ,rust-serde-json-1.0))))
|
||||||
|
(home-page "https://github.com/est31/serde-big-array")
|
||||||
|
(synopsis "Big array helper for serde")
|
||||||
|
(description "This package provides a big array helper for serde.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-serde-bytes-0.11
|
(define-public rust-serde-bytes-0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-serde-bytes")
|
(name "rust-serde-bytes")
|
||||||
|
|
Loading…
Reference in a new issue