gnu: Add rust-parity-wasm.
* gnu/packages/crates-io.scm (rust-parity-wasm): New variable.
This commit is contained in:
parent
540d830edc
commit
41ba4cf150
1 changed files with 25 additions and 0 deletions
|
@ -1968,6 +1968,31 @@ (define-public rust-owning-ref
|
|||
normally prevent moving a type that has been borrowed from.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-parity-wasm
|
||||
(package
|
||||
(name "rust-parity-wasm")
|
||||
(version "0.40.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "parity-wasm" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1p84f0k36q05j18jy66n122lyali794cj78hbxgy9wj6si84plqd"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-time" ,rust-time))
|
||||
#:tests? #f)) ; Test files are not included in release.
|
||||
(home-page "https://github.com/paritytech/parity-wasm")
|
||||
(synopsis "Low-level WebAssembly format library")
|
||||
(description
|
||||
"This package provides a WebAssembly binary format serialization,
|
||||
deserialization, and interpreter in Rust.")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-peeking-take-while
|
||||
(package
|
||||
(name "rust-peeking-take-while")
|
||||
|
|
Loading…
Reference in a new issue