countio 0.2.13

Byte counting for std::io::{Read, Write, Seek} and its async variants from futures and tokio.
Documentation
# https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "countio"
version = "0.2.13"
edition = "2021"

license = "MIT"
readme = "./README.md"
description = """
Byte counting for std::io::{Read, Write, Seek} and
its async variants from futures and tokio.
"""

authors = ["Oleh Martsokha <o.martsokha@gmail.com>"]
repository = "https://github.com/xwde/countio"
homepage = "https://github.com/xwde/countio"
documentation = "https://docs.rs/countio"
categories = ["parsing", "asynchronous"]
keywords = ["byte", "counting", "counter", "tokio", "futures"]

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

[lib]
path = "./lib.rs"

[features]
default = ["std"]
std = []
futures = ["dep:futures-io"]
tokio = ["dep:tokio"]

[dependencies]
tokio = { version = "1.29.1", optional = true, default-features = false, features = [
] }
futures-io = { version = "0.3.28", optional = true, default-features = false, features = [
    "std",
] }

[dev-dependencies]
tokio = { version = "1.29.1", default-features = false, features = [
    "rt",
    "macros",
    "io-util",
] }
futures-util = { version = "0.3.28", default-features = false, features = [] }
futures-test = { version = "0.3.28", default-features = false, features = [
    "std",
] }