From 5d4eeae0c422d9435247f507e1bef682022b8cfc Mon Sep 17 00:00:00 2001 From: SabrinaJewson Date: Fri, 19 Jun 2026 03:19:48 +0100 Subject: [PATCH] Add `os-pipe` --- data/os-pipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/os-pipe.toml diff --git a/data/os-pipe.toml b/data/os-pipe.toml new file mode 100644 index 0000000..ac11623 --- /dev/null +++ b/data/os-pipe.toml @@ -0,0 +1,5 @@ +description = """ +`std::io::pipe` (stable since 1.87.0) provides support for creating OS pipes for interprocess +communication, providing the `pipe` function this crate offered. +""" +url = "https://doc.rust-lang.org/std/io/fn.pipe.html"