mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-03 13:14:41 +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
|
|
@ -161,6 +161,8 @@ rustix = { version = "1.0.0", default-features = false, features = ["fs", "std"]
|
|||
same-file = { version = "1.0.6" }
|
||||
schemars = { version = "1.0.0", features = ["url2"] }
|
||||
seahash = { version = "4.1.0" }
|
||||
secret-service = { version = "5.0.0", features = ["rt-tokio-crypto-rust"] }
|
||||
security-framework = { version = "3" }
|
||||
self-replace = { version = "1.5.0" }
|
||||
serde = { version = "1.0.210", features = ["derive", "rc"] }
|
||||
serde-untagged = { version = "0.1.6" }
|
||||
|
|
@ -200,6 +202,7 @@ windows-result = { version = "0.3.0" }
|
|||
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Ioctl", "Win32_System_IO", "Win32_System_Registry"] }
|
||||
wiremock = { version = "0.6.4" }
|
||||
xz2 = { version = "0.1.7" }
|
||||
zeroize = { version = "1.8.1" }
|
||||
zip = { version = "2.2.3", default-features = false, features = ["deflate", "zstd", "bzip2", "lzma", "xz"] }
|
||||
zstd = { version = "0.13.3" }
|
||||
|
||||
|
|
|
|||
|
|
@ -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