From bce4b0bb3bf052378a2a3848356b8a55e32deef3 Mon Sep 17 00:00:00 2001 From: Xuewei Niu Date: Tue, 8 Jul 2025 23:45:08 +0800 Subject: [PATCH] Fix the warning about config file The cargo complaints that ".cargo/config" is deprecated in favor of ".cargo/config.toml". Therefore, the file is renamed to it to make cargo happy. Signed-off-by: Xuewei Niu --- .cargo/{config => config.toml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .cargo/{config => config.toml} (100%) diff --git a/.cargo/config b/.cargo/config.toml similarity index 100% rename from .cargo/config rename to .cargo/config.toml