-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
authors = ["Jonathan Creekmore <jonathan@thecreekmores.org>"]
categories = ["os::unix-apis"]
changelog = "CHANGELOG.md"
description = "Adds timeout capabilities to Readers and Writers"
documentation = "https://docs.rs/timeout-readwrite/"
homepage = "https://github.com/jcreekmore/timeout-readwrite-rs"
keywords = [
"timeout",
"reader",
"writer",
]
license = "MIT/Apache-2.0"
name = "timeout-readwrite"
readme = "README.md"
repository = "https://github.com/jcreekmore/timeout-readwrite-rs"
version = "0.4.0"
[badges.travis-ci]
repository = "jcreekmore/timeout-readwrite-rs"
[dependencies]
nix = { version = "0.29.0", default-features = false, features = ["poll"] }
[dev-dependencies]
lazy_static = "1.5.0"