From 646ded151324672e539410de7a415896809a4ec8 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 14 Nov 2024 22:41:49 -0600 Subject: [PATCH] Specify `rust-version = "1.19"` in Cargo.toml The `libc-0.2` branch currently tests down to version 1.19. Document this in Cargo.toml to give an obvious point of reference when this changes. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 84f34dc468f20..0658c88bbbaef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,7 @@ keywords = ["libc", "ffi", "bindings", "operating", "system"] categories = ["external-ffi-bindings", "no-std", "os"] build = "build.rs" exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"] +rust-version = "1.19" description = """ Raw FFI bindings to platform libraries like libc. """