feat: added cargo.toml metadata
Some checks are pending
build / checks-matrix (push) Waiting to run
build / checks-build (push) Blocked by required conditions
build / codecov (push) Waiting to run
docs / docs (push) Waiting to run

This commit is contained in:
uttarayan21
2025-12-05 16:56:32 +05:30
parent 5d9f4d5e0a
commit bfc417ef28
2 changed files with 14 additions and 0 deletions

View File

@@ -2,6 +2,19 @@
name = "teewriter"
version = "0.1.0"
edition = "2024"
repository = "https://git.darksailor.dev/servius/teewriter"
license = "MIT"
description = "A library to write to multiple writers simultaneously"
keywords = [
"tee",
"writer",
"io",
"async",
"sync",
"teewriter",
"tokio",
"futures",
]
[package.metadata.docs.rs]
all-features = true

View File

@@ -1,5 +1,6 @@
//! Utilities for working with sync and async tee writers
//! This crate provides implementations for creating tee writers that can write to two or more underlying writers simultaneously.
//! It supports both synchronous writers (implementing `std::io::Write`) and asynchronous writers (implementing `tokio::io::AsyncWrite` or `futures::io::AsyncWrite`).
//!
//! # Example with std::io::Write
//! #[cfg(feature = "io-std")]