mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-wasm-bindgen-console-logger-0.1.
* gnu/packages/crates-io.scm (rust-wasm-bindgen-console-logger-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7cb4440951
commit
a1598dbc4e
1 changed files with 26 additions and 0 deletions
|
@ -29395,6 +29395,32 @@ (define-public rust-wasm-bindgen-backend-0.2
|
|||
"Backend code generation of the wasm-bindgen tool.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-wasm-bindgen-console-logger-0.1
|
||||
(package
|
||||
(name "rust-wasm-bindgen-console-logger")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "wasm-bindgen-console-logger" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1vc506dhrk2yl0snkcn45s5adndq9wj7ipxb7awbbxzswxss4c3m"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-log" ,rust-log-0.4)
|
||||
("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
|
||||
(home-page "https://github.com/blm768/wasm-bindgen-console-logger")
|
||||
(synopsis "Rust log and JavaScript console logging integration")
|
||||
(description
|
||||
"This package provides a logging facility that integrates the
|
||||
log crate with JavaScript console logging functions with the help of
|
||||
wasm-bindgen.")
|
||||
(license license:cc0)))
|
||||
|
||||
(define-public rust-wasm-bindgen-futures-0.4
|
||||
(package
|
||||
(name "rust-wasm-bindgen-futures")
|
||||
|
|
Loading…
Reference in a new issue