From 9513b2b3d544e4cf155e270a7724a0280fdf1cb0 Mon Sep 17 00:00:00 2001 From: finga Date: Fri, 8 Dec 2023 01:16:47 +0100 Subject: [PATCH] cargo: Add staging registry In order to test things add the config for the staging registry. --- .cargo/config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config b/.cargo/config index fb58920..9cadfdc 100644 --- a/.cargo/config +++ b/.cargo/config @@ -5,3 +5,6 @@ rustflags = [ "-Dclippy::nursery", "-Dclippy::cargo", ] + +[registries] +staging = { index = "https://github.com/rust-lang/staging.crates.io-index" }