From 997bbbb34e3fc7067d804334d96a39b1a0f53b27 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sat, 24 Jan 2026 22:28:16 -0500 Subject: [PATCH 1/2] Remove deprecated authors field from Cargo.toml --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 90b108c..e13c3ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,6 @@ name = "printf-compat" description = "printf reimplemented in Rust" version = "0.3.0" repository = "https://github.com/lights0123/printf-compat" -authors = ["lights0123 "] edition = "2024" license = "MIT OR Apache-2.0" readme = "README.md" From 42352fdf6d2c6ce6286c07d461ad3cabf2f4993a Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sat, 24 Jan 2026 22:31:37 -0500 Subject: [PATCH 2/2] Add categories to Cargo.toml --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index e13c3ea..238780f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ repository = "https://github.com/lights0123/printf-compat" edition = "2024" license = "MIT OR Apache-2.0" readme = "README.md" +categories = ["development-tools::ffi", "embedded", "no-std", "no-std::no-alloc"] [dependencies] bitflags = "2.9.1"