From ae5236ec7c86b58c260673ae63280da1768576ab Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 28 Jun 2026 14:53:31 -0700 Subject: [PATCH] Add `cfg-match` Similar to `cfg-if`, it's now covered by `cfg_select!`. --- data/cfg-match.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/cfg-match.toml diff --git a/data/cfg-match.toml b/data/cfg-match.toml new file mode 100644 index 0000000..368f6c8 --- /dev/null +++ b/data/cfg-match.toml @@ -0,0 +1,5 @@ +description = """ +`cfg_select!` has been in `std` since Rust 1.95, providing the functionality of \ +the `cfg_match!` macro this crate offered. +""" +url = "https://doc.rust-lang.org/std/macro.cfg_select.html"