Use workspace dependencies in uv-keyring (#15738)

It seems that this was during the vendoring of the keyring crate.
This commit is contained in:
konsti 2025-09-09 09:05:43 +02:00 committed by GitHub
parent 19ea0f4932
commit d9b63dc547
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -26,15 +26,15 @@ thiserror = { workspace = true }
tokio = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = { version = "3", optional = true }
security-framework = { workspace = true, optional = true }
[target.'cfg(any(target_os = "linux",target_os = "freebsd", target_os = "openbsd"))'.dependencies]
secret-service = { version = "5.0.0", features = ["rt-tokio-crypto-rust"], optional = true }
secret-service = { workspace = true, features = ["rt-tokio-crypto-rust"], optional = true }
[target.'cfg(target_os = "windows")'.dependencies]
byteorder = { version = "1", optional = true }
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_Security_Credentials"], optional = true }
zeroize = "1.8.1"
byteorder = { workspace = true, optional = true }
windows-sys = { workspace = true, features = ["Win32_Foundation", "Win32_Security_Credentials"], optional = true }
zeroize = { workspace = true }
[dev-dependencies]
doc-comment = "0.3"