mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-serde-stacker-0.1.
* gnu/packages/crates-io.scm (rust-serde-stacker-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
4175e2cfff
commit
6e69201641
1 changed files with 27 additions and 0 deletions
|
@ -26611,6 +26611,33 @@ (define-public rust-serde-macros-0.4
|
|||
"Macros to auto-generate implementations for the serde framework.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-serde-stacker-0.1
|
||||
(package
|
||||
(name "rust-serde-stacker")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "serde-stacker" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1qlfpy0nmxrvahz4hs9p1y84rb0vy6mbxn1lfgvq6fryls8j7jgl"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-serde" ,rust-serde-1)
|
||||
("rust-stacker" ,rust-stacker-0.1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-serde-json" ,rust-serde-json-1))))
|
||||
(home-page "https://github.com/dtolnay/serde-stacker")
|
||||
(synopsis "@code{serde} adapter that avoids stack overflow")
|
||||
(description
|
||||
"This package provides a @code{serde} adapter that avoids stack overflow
|
||||
by dynamically growing the stack.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-serde-test-1
|
||||
(package
|
||||
(name "rust-serde-test")
|
||||
|
|
Loading…
Reference in a new issue