{"id":24093760,"url":"https://github.com/routerify/async-pipe-rs","last_synced_at":"2025-12-12T14:49:29.483Z","repository":{"id":43386765,"uuid":"251724564","full_name":"routerify/async-pipe-rs","owner":"routerify","description":"Creates an asynchronous piped reader and writer pair using tokio.rs","archived":false,"fork":false,"pushed_at":"2022-03-04T00:27:39.000Z","size":51,"stargazers_count":7,"open_issues_count":7,"forks_count":10,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-31T07:51:16.446Z","etag":null,"topics":["async","piped","rust-lang","tokio-rs"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/routerify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-31T20:33:11.000Z","updated_at":"2024-12-05T15:25:15.000Z","dependencies_parsed_at":"2022-08-24T11:40:25.704Z","dependency_job_id":null,"html_url":"https://github.com/routerify/async-pipe-rs","commit_stats":null,"previous_names":["rousan/async-pipe-rs"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/routerify%2Fasync-pipe-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/routerify%2Fasync-pipe-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/routerify%2Fasync-pipe-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/routerify%2Fasync-pipe-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/routerify","download_url":"https://codeload.github.com/routerify/async-pipe-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252707077,"owners_count":21791467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async","piped","rust-lang","tokio-rs"],"created_at":"2025-01-10T10:34:26.559Z","updated_at":"2025-12-12T14:49:24.427Z","avatar_url":"https://github.com/routerify.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# async-pipe-rs\n\n[![crates.io](https://img.shields.io/crates/v/async-pipe.svg)](https://crates.io/crates/async-pipe)\n[![Documentation](https://docs.rs/async-pipe/badge.svg)](https://docs.rs/async-pipe)\n[![MIT](https://img.shields.io/crates/l/async-pipe.svg)](./LICENSE)\n\nCreates an asynchronous piped reader and writer pair using `tokio.rs` or\n`futures`\n\n[Docs](https://docs.rs/async-pipe)\n\n## Usage\n\nFirst add this to your Cargo.toml:\n\n```toml\n[dependencies]\nasync-pipe = \"0.1\"\n```\n\nAn example:\n```rust\nuse async_pipe;\nuse tokio::prelude::*;\n\n#[tokio::main]\nasync fn main() {\n    let (mut w, mut r) = async_pipe::pipe();\n\n    tokio::spawn(async move {\n        w.write_all(b\"hello world\").await.unwrap();\n    });\n\n    let mut v = Vec::new();\n    r.read_to_end(\u0026mut v).await.unwrap();\n    println!(\"Received: {:?}\", String::from_utf8(v));\n}\n```\n\n## Contributing\n\nYour PRs and stars are always welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frouterify%2Fasync-pipe-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frouterify%2Fasync-pipe-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frouterify%2Fasync-pipe-rs/lists"}