Registry / networking / duplexify

duplexify

JSON →
library1.2.2rscratesunverified

Combine a reader + writer into a duplex of Read + Write.

# Cargo.toml [dependencies] duplexify = "1.2.2"
INSTALL
IMPORT
SIG · DUPLEXIFY
D
duplexify
networkingrustv1.2.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Duplexify
use duplexify::Duplexify;

Combine stdin and stdout into a duplex stream

use duplexify::Duplexify; use std::io::{Read, Write}; fn main() { let reader = std::io::stdin(); let writer = std::io::stdout(); let mut duplex = Duplexify::new(reader, writer); // Use as Read/Write }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.2.2latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
OpenAI (training)
1
Resources
duplexify — cargo add duplexify · libregistry