me
/
guix
Archived
1
0
Fork 0

gnu: rust-async-fs-1: Update to 1.6.0.

* gnu/packages/crates-io.scm (rust-async-fs-1): Update to 1.6.0.
[arguments]: Don't skip the build.
[cargo-inputs]: Add rust-autocfg-1.
[cargo-development-inputs]: Add rust-libc-0.2, rust-winapi-0.3.
[home-page]: Update to new home-page.

Change-Id: I5e399f890b802b284eac2950219be692aa81b607
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Herman Rimm 2024-01-30 16:25:20 +01:00 committed by Efraim Flashner
parent 6c12ef09a4
commit e60c67b1b4
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 10 additions and 9 deletions

View File

@ -4119,23 +4119,24 @@ AsyncSeek if the inner type does.")
(define-public rust-async-fs-1
(package
(name "rust-async-fs")
(version "1.5.0")
(version "1.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-fs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1qnsqg0jjpda590w8nvbhh5mcmdyx5f43xx2g313fz0izzwa8g4b"))))
(base32 "01if2h77mry9cnm91ql2md595108i2c1bfy9gaivzvjfcl2gk717"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-async-lock" ,rust-async-lock-2)
("rust-blocking" ,rust-blocking-1)
("rust-futures-lite" ,rust-futures-lite-1))))
(home-page "https://github.com/stjepang/async-fs")
(synopsis "Async filesystem primitives in Rust")
`(#:cargo-inputs (("rust-async-lock" ,rust-async-lock-2)
("rust-autocfg" ,rust-autocfg-1)
("rust-blocking" ,rust-blocking-1)
("rust-futures-lite" ,rust-futures-lite-1))
#:cargo-development-inputs (("rust-libc" ,rust-libc-0.2)
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/smol-rs/async-fs")
(synopsis "Async filesystem primitives")
(description "This package provides async filesystem primitives.")
(license (list license:asl2.0 license:expat))))