mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-03 05:03:46 +00:00
Use workspace dependencies in uv-keyring (#15738)
It seems that this was during the vendoring of the keyring crate.
This commit is contained in:
parent
19ea0f4932
commit
d9b63dc547
2 changed files with 8 additions and 5 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue