[bug#53995,03/31] gnu: update rust-async-trait to 0.1.52.
Commit Message
---
gnu/packages/crates-io.scm | 19 +++++++------------
1 file changed, 7 insertions(+), 12 deletions(-)
Comments
Nicolas Graves schreef op wo 16-02-2022 om 02:13 [+0100]:
> - `(#:cargo-inputs
> - (("rust-proc-macro2" ,rust-proc-macro2-1)
> - ("rust-quote" ,rust-quote-1)
> - ("rust-syn" ,rust-syn-1))
> - #:cargo-development-inputs
> - (("rust-rustversion" ,rust-rustversion-1)
> - ("rust-tracing" ,rust-tracing-0.1)
> - ("rust-tracing-attributes" ,rust-tracing-attributes-0.1)
> - ("rust-tracing-futures" ,rust-tracing-futures-0.2)
> - ("rust-trybuild" ,rust-trybuild-1))))
> + `(#:skip-build? #t
> + #:cargo-inputs
> + (("rust-proc-macro2" ,rust-proc-macro2-1)
> + ("rust-quote" ,rust-quote-1)
> + ("rust-syn" ,rust-syn-1))))
To reduce diffs, could indentation changes be left out or be done in a
separate patch? That would make it much faster to identify what
actually changed.
My comments about rust-anyhow's #:cargo-development-inputs and #:skip-
build apply here as well (and to a lot of other updates).
Greetings,
Maxime
@@ -4960,26 +4960,21 @@ (define-public rust-async-tls-0.10
(define-public rust-async-trait-0.1
(package
(name "rust-async-trait")
- (version "0.1.42")
+ (version "0.1.52")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-trait" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "0gd13pqgw5m6l4bqwjkickq13c4v0jxzxs5i4dwmldrlgvklafld"))))
+ (base32 "1qv5l9izrd96zcrlcr4x1kh41ylq1d9702f3vl8w11m2rb67l6h6"))))
(build-system cargo-build-system)
(arguments
- `(#:cargo-inputs
- (("rust-proc-macro2" ,rust-proc-macro2-1)
- ("rust-quote" ,rust-quote-1)
- ("rust-syn" ,rust-syn-1))
- #:cargo-development-inputs
- (("rust-rustversion" ,rust-rustversion-1)
- ("rust-tracing" ,rust-tracing-0.1)
- ("rust-tracing-attributes" ,rust-tracing-attributes-0.1)
- ("rust-tracing-futures" ,rust-tracing-futures-0.2)
- ("rust-trybuild" ,rust-trybuild-1))))
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-proc-macro2" ,rust-proc-macro2-1)
+ ("rust-quote" ,rust-quote-1)
+ ("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/dtolnay/async-trait")
(synopsis "Type erasure for async trait methods")
(description "This package provides type erasure for async trait