gnu: Add rust-io-lifetimes-0.7.
* gnu/packages/crates-io.scm (rust-io-lifetimes-0.7): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
ee048957dc
commit
1a5c4f1908
1 changed files with 30 additions and 0 deletions
|
@ -27727,6 +27727,36 @@ versions < 0.2.")
|
||||||
;; Either license can be chosen at the users option.
|
;; Either license can be chosen at the users option.
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-io-lifetimes-0.7
|
||||||
|
(package
|
||||||
|
(name "rust-io-lifetimes")
|
||||||
|
(version "0.7.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "io-lifetimes" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0x10ak2iy4p24g7bnp1rfrq6aqddjlzkykgwjdayi7nl97wmxkjr"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:cargo-inputs
|
||||||
|
`(("rust-async-std" ,rust-async-std-1)
|
||||||
|
("rust-fs-err" ,rust-fs-err-2)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-mio" ,rust-mio-0.8)
|
||||||
|
("rust-os-pipe" ,rust-os-pipe-1)
|
||||||
|
("rust-socket2" ,rust-socket2-0.4)
|
||||||
|
("rust-tokio" ,rust-tokio-1)
|
||||||
|
("rust-windows-sys" ,rust-windows-sys-0.42))))
|
||||||
|
(home-page "https://github.com/sunfishcode/io-lifetimes")
|
||||||
|
(synopsis "Low-level I/O ownership and borrowing library")
|
||||||
|
(description
|
||||||
|
"This package provides a low-level I/O ownership and borrowing
|
||||||
|
library.")
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
||||||
(define-public rust-iovec-0.1
|
(define-public rust-iovec-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-iovec")
|
(name "rust-iovec")
|
||||||
|
|
Reference in a new issue