From 5bc2e509997eae757ac6fab2aa4954f3f8ea55c4 Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Sat, 5 Oct 2024 18:19:33 -0700 Subject: [PATCH] Add rustix Fixes: https://github.com/nicoburns/blessed-rs/issues/135 --- data/crates.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/crates.json b/data/crates.json index 2fca11d..f3876a9 100644 --- a/data/crates.json +++ b/data/crates.json @@ -388,6 +388,9 @@ { "name": "*nix (OSs)", "recommendations": [{ + "name": "rustix", + "notes": "Efficient and safe POSIX / *nix / Winsock syscall-like APIs. It uses idiomatic Rust types: refs, slices, Results instead of raw pointers, safe wrappers around raw file descriptors, bitflags instead of bare integer flags, and several other conveniences." + }, { "name": "nix", "notes": "Bindings to the various *nix system functions. (Unix, Linux, MacOS, etc.)" }]