gnu: Add rust-wasmparser-0.57.

* gnu/packages/crates-io.scm (rust-wasmparser-0.57): New variable.
This commit is contained in:
Nicolas Goaziou 2021-03-10 16:13:41 +01:00
parent 00c1793ce8
commit 6cadf34d1f
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -47250,6 +47250,26 @@ (define-public rust-wasm-bindgen-webidl-0.2
"Support for parsing WebIDL specific to wasm-bindgen.")
(license (list license:expat license:asl2.0))))
(define-public rust-wasmparser-0.57
(package
(name "rust-wasmparser")
(version "0.57.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "wasmparser" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "19kslk9pv1bcyp85w63dn1adbp13kz7kjha80abnwz27bmbxvz9j"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser")
(synopsis "Simple event-driven library for parsing WebAssembly binary files")
(description
"This package provides a simple event-driven library for parsing
WebAssembly binary files.")
(license license:asl2.0)))
(define-public rust-web-sys-0.3
(package
(name "rust-web-sys")