partial-io 0.5.4

Helpers to test partial, interrupted and would-block I/O operations, with support for property-based testing through proptest and quickcheck.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.56"
name = "partial-io"
version = "0.5.4"
authors = ["Rain <rain@sunshowers.io>"]
exclude = [
    "TARGETS",
    "publish-docs.sh",
    "rust-partial-io.iml",
    ".travis.yml",
    "**/*.bk",
]
description = "Helpers to test partial, interrupted and would-block I/O operations, with support for property-based testing through proptest and quickcheck."
documentation = "https://docs.rs/partial-io"
readme = "README.md"
keywords = [
    "partial",
    "interrupted",
    "tokio",
    "quickcheck",
    "proptest",
]
categories = [
    "development-tools::testing",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/sunshowers-code/partial-io"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "doc_cfg",
]

[[example]]
name = "buggy_write"
required-features = [
    "quickcheck1",
    "proptest1",
]

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.pin-project]
version = "1.0.4"
optional = true

[dependencies.proptest]
version = "1.0.0"
optional = true

[dependencies.quickcheck]
version = "1.0.3"
optional = true

[dependencies.rand]
version = "0.8.5"
features = [
    "getrandom",
    "small_rng",
]
optional = true

[dependencies.tokio]
version = "1.21.1"
optional = true

[dev-dependencies.itertools]
version = "0.10.5"

[dev-dependencies.once_cell]
version = "1.15.0"

[dev-dependencies.quickcheck]
version = "1.0.3"

[dev-dependencies.tokio]
version = "1.21.1"
features = [
    "io-util",
    "macros",
    "rt-multi-thread",
]

[features]
futures03 = [
    "futures",
    "pin-project",
]
proptest1 = ["proptest"]
quickcheck1 = [
    "quickcheck",
    "rand",
]
tokio1 = [
    "futures03",
    "tokio",
]