From: Fabian Grünbichler Date: Thu, 20 Jun 2024 10:38:39 +0000 (+0200) Subject: move .cargo/config to .cargo/config.toml X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=6f8e9b02860ddd24682beb9f1ac224a556732045;p=vma-to-pbs.git move .cargo/config to .cargo/config.toml the old location has been deprecated for a while, and rustc 1.78 will start to warn about it. Signed-off-by: Fabian Grünbichler --- diff --git a/.cargo/config b/.cargo/config deleted file mode 100644 index 3b5b6e4..0000000 --- a/.cargo/config +++ /dev/null @@ -1,5 +0,0 @@ -[source] -[source.debian-packages] -directory = "/usr/share/cargo/registry" -[source.crates-io] -replace-with = "debian-packages" diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..3b5b6e4 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,5 @@ +[source] +[source.debian-packages] +directory = "/usr/share/cargo/registry" +[source.crates-io] +replace-with = "debian-packages"