From 94d94e63aded48d9b7dfcadac04c380bf6f0e19a Mon Sep 17 00:00:00 2001 From: John Mumm Date: Fri, 8 Aug 2025 10:16:59 +0100 Subject: [PATCH] .. --- crates/uv-auth/src/keyring.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-auth/src/keyring.rs b/crates/uv-auth/src/keyring.rs index 10d855370..779ab2823 100644 --- a/crates/uv-auth/src/keyring.rs +++ b/crates/uv-auth/src/keyring.rs @@ -14,7 +14,7 @@ use crate::credentials::Credentials; /// Keyring credentials that have been stored during an invocation of uv. static STORED_KEYRING_URLS: LazyLock = LazyLock::new(StoredKeyringUrls::new); /// Service name prefix for storing credentials in a keyring. -static UV_SERVICE_PREFIX: &str = "uv-credentials-"; +static UV_SERVICE_PREFIX: &str = "uv-credentials:"; /// A backend for retrieving credentials from a keyring. ///