1[package] 2name = "tokio-io-timeout" 3version = "1.2.0" 4authors = ["Steven Fackler <sfackler@gmail.com>"] 5license = "MIT/Apache-2.0" 6description = "Tokio wrappers which apply timeouts to IO operations" 7repository = "https://github.com/sfackler/tokio-io-timeout" 8readme = "README.md" 9edition = "2018" 10 11[dependencies] 12pin-project-lite = "0.2" 13tokio = { version = "1.0", features = ["time"] } 14 15[dev-dependencies] 16tokio = { version = "1.0", features = ["full"] } 17