From 9bd683ab26c35a29520df879ee2fb7d1e88913aa Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 16 Jun 2026 23:24:35 +0200 Subject: [PATCH 1/2] 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..70db369 --- /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`. However not all `itoa` features are \ +present yet so check before doing a full replacement. +""" +url = "https://doc.rust-lang.org/nightly/core/fmt/struct.NumBuffer.html" From d8d27f3215fe97becc212b4e6916ff7cc6605d26 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Mon, 24 Aug 2026 13:50:29 +0200 Subject: [PATCH 2/2] Apply suggestion from @Turbo87 --- data/itoa.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/itoa.toml b/data/itoa.toml index 70db369..fa4f0e7 100644 --- a/data/itoa.toml +++ b/data/itoa.toml @@ -3,4 +3,4 @@ The core library provides `core::fmt::NumBuffer` (stable since Rust 1.98), \ which lets you replace `itoa::Buffer`. However not all `itoa` features are \ present yet so check before doing a full replacement. """ -url = "https://doc.rust-lang.org/nightly/core/fmt/struct.NumBuffer.html" +url = "https://doc.rust-lang.org/stable/core/fmt/struct.NumBuffer.html"