From 6853c3e09f51700eba051efc31022084e2fd6234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 14 Jun 2025 23:51:17 +0100 Subject: [PATCH] cargo: add config file to force CARGO_NET_GIT_FETCH_WITH_CLI=true ... as workaround for fdo gitlab + fastly issues. Part-of: --- .cargo/config.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 000000000..2a6115e40 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,6 @@ +[net] + +# Use the `git` executable for git operations. The built-in cargo git +# client seems to often hang with gitlab.freedesktop.org's fastly +# cache configuration. +git-fetch-with-cli = true