2019-04-23 07:20:33 +03:00
|
|
|
[package]
|
|
|
|
name = "filedescriptor"
|
2019-06-19 21:11:06 +03:00
|
|
|
version = "0.4.0"
|
2019-04-23 07:20:33 +03:00
|
|
|
authors = ["Wez Furlong"]
|
|
|
|
edition = "2018"
|
2019-05-20 00:27:11 +03:00
|
|
|
repository = "https://github.com/wez/wzsh"
|
|
|
|
description = "More ergonomic wrappers around RawFd and RawHandle"
|
|
|
|
license = "MIT"
|
|
|
|
documentation = "https://docs.rs/filedescriptor"
|
2019-06-01 18:19:18 +03:00
|
|
|
readme = "README.md"
|
2019-06-19 09:35:53 +03:00
|
|
|
keywords = ["socketpair", "pipe", "poll", "filedescriptor"]
|
2019-04-23 07:20:33 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
|
|
|
libc = "0.2"
|
|
|
|
|
2019-05-18 20:30:28 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winapi = { version = "0.3", features = [
|
|
|
|
"winuser",
|
|
|
|
"handleapi",
|
|
|
|
"fileapi",
|
|
|
|
"namedpipeapi",
|
2019-06-18 18:31:27 +03:00
|
|
|
"processthreadsapi",
|
|
|
|
"winsock2"
|
2019-05-18 20:30:28 +03:00
|
|
|
]}
|