From 17e93c172f5d3128ad467e1064da8cb461842c8c Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Tue, 16 Jun 2026 20:36:02 +0200 Subject: [PATCH] Add `cty` crate --- data/cty.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/cty.toml diff --git a/data/cty.toml b/data/cty.toml new file mode 100644 index 0000000..a0f9257 --- /dev/null +++ b/data/cty.toml @@ -0,0 +1,6 @@ +description = """ +`core::ffi` (stable since Rust 1.64) provides the C primitive type aliases \ +(`c_char`, `c_int`, etc.) without `std`. The C99 `int32_t`/`size_t`-style \ +aliases have no stable `core` equivalent. +""" +url = "https://doc.rust-lang.org/core/ffi/index.html"