mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: Add rust-bincode-1.1.
* gnu/packages/crates-io.scm (rust-bincode-1.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
5d183b9fe8
commit
cc657be8da
1 changed files with 31 additions and 0 deletions
|
@ -203,6 +203,37 @@ (define-public rust-bencher-0.1
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-bincode-1.1
|
||||||
|
(package
|
||||||
|
(name "rust-bincode")
|
||||||
|
(version "1.1.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "bincode" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xx6bp39irvsndk6prnmmq8m1l9p6q2qj21j6mfks2y81pjsa14z"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-autocfg" ,rust-autocfg-0.1)
|
||||||
|
("rust-byteorder" ,rust-byteorder-1.3)
|
||||||
|
("rust-serde" ,rust-serde-1.0))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-serde-bytes" ,rust-serde-bytes-0.11)
|
||||||
|
("rust-serde-derive" ,rust-serde-derive-1.0))))
|
||||||
|
(home-page "https://github.com/servo/bincode")
|
||||||
|
(synopsis
|
||||||
|
"Binary serialization/deserialization strategy")
|
||||||
|
(description
|
||||||
|
"This package provides a binary serialization/deserialization strategy
|
||||||
|
that uses Serde for transforming structs into bytes and vice versa!")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-bitflags-1
|
(define-public rust-bitflags-1
|
||||||
(package
|
(package
|
||||||
(name "rust-bitflags")
|
(name "rust-bitflags")
|
||||||
|
|
Loading…
Reference in a new issue