[package]
edition = "2021"
rust-version = "1.71.1"
name = "logged-stream"
version = "0.5.0"
authors = ["Alexandr Garbuzov <qwerty541zxc@gmail.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"CHANGELOG.md",
"LICENSE-*",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Logging of all read/write operations, errors and drop of underlying IO object."
homepage = "https://github.com/qwerty541/logged-stream"
documentation = "https://docs.rs/logged-stream"
readme = "README.md"
keywords = [
"io",
"logging",
"async",
"network",
]
categories = [
"asynchronous",
"data-structures",
"development-tools::debugging",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qwerty541/logged-stream"
[lib]
name = "logged_stream"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4.43"
[dependencies.itertools]
version = "0.14.0"
[dependencies.log]
version = "0.4.29"
[dependencies.tokio]
version = "1.49.0"
features = ["io-util"]
default-features = false
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.env_logger]
version = "0.11.6"
[dev-dependencies.tokio]
version = "1.49.0"
features = [
"macros",
"net",
"rt-multi-thread",
]
default-features = false