gnu: Add rust-async-log-1.

* gnu/packages/crates-io.scm (rust-async-log-1): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-19 23:53:32 +01:00
parent a9b521f499
commit 1f7f45efe5
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1220,6 +1220,30 @@ (define-public rust-async-compression-0.3
and Rust's modern asynchronous IO types.")
(license (list license:expat license:asl2.0))))
(define-public rust-async-log-1
(package
(name "rust-async-log")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-log" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "16ymra7f8169br9ss9m9n4l6rjcav9ns6r9mv4nr4r9i9wq37fpm"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-async-log-attributes" ,rust-async-log-attributes-1)
("rust-backtrace" ,rust-backtrace-0.3)
("rust-log" ,rust-log-0.4))))
(home-page "https://github.com/async-rs/async-log")
(synopsis "Async tracing capabilities for the @code{log} crate")
(description
"This crate provides extension types and hooks to @code{log} to enable
asynchronous logging.")
(license (list license:expat license:asl2.0))))
(define-public rust-async-log-attributes-1
(package
(name "rust-async-log-attributes")