{"id":71152,"library":"futures-buffered","title":"Futures Buffered","description":"Future concurrency primitives with emphasis on performance and low memory usage.","status":"active","version":"0.2.13","language":"rust","source_language":null,"source_url":"https://github.com/conradludgate/futures-buffered","tags":["async","concurrency","stream","buffered","futures"],"install":[{"cmd":"# Cargo.toml\n[dependencies]\nfutures-buffered = \"0.2.13\"","lang":"toml","label":"Cargo.toml"},{"cmd":"cargo add futures-buffered","lang":"bash","label":"cargo add"}],"dependencies":[],"imports":[{"symbol":"BufferedStream","correct":"use futures_buffered::BufferedStream;"}],"quickstart":{"code":"use futures_buffered::BufferedStream;\nuse futures::stream::StreamExt;\n\n#[tokio::main]\nasync fn main() {\n    let stream = futures::stream::iter(1..=10).map(|i| async move { i });\n    let buffered = BufferedStream::new(stream, 3);\n    let results: Vec<_> = buffered.collect().await;\n    println!(\"{:?}\", results);\n}","lang":"rust","description":"Creates a buffered stream that processes up to 3 futures concurrently."},"warnings":[{"fix":"Add `tokio` with `full` features or `async-std` to your dependencies.","message":"Requires an async runtime like tokio or async-std","severity":"gotcha","affected_versions":">=0.2.0"}],"env_vars":null,"search_vec":"'async':14 'buffer':2,17 'concurr':4,15 'emphasi':7 'futur':1,3,18 'low':11 'memori':12 'perform':9 'primit':5 'stream':16 'usag':13","created_at":"2026-06-17T18:23:17.074708+00:00","updated_at":"2026-06-17T18:23:17.074708+00:00","problems":[],"ecosystem":"crates","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":"https://github.com/conradludgate/futures-buffered","github":"https://github.com/conradludgate/futures-buffered","docs":"https://docs.rs/futures-buffered/","changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["async"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-17","next_check":"2026-12-14","install_tag":null}}