From 44f4b78f8dfa2a8c8f3f5d781c8d8bf28df4a659 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 16 Jun 2026 23:24:35 +0200 Subject: [PATCH] Add `itoa` crate to the list --- data/itoa.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/itoa.toml diff --git a/data/itoa.toml b/data/itoa.toml new file mode 100644 index 0000000..5a95e34 --- /dev/null +++ b/data/itoa.toml @@ -0,0 +1,6 @@ +description = """ +The core library provides `core::fmt::NumBuffer` (stable since Rust 1.98), \ +which lets you replace `itoa::Buffer` to achieve the same functionalities \ +and remove the dependency. +""" +url = "https://doc.rust-lang.org/nightly/core/fmt/struct.NumBuffer.html"