uv/crates/uv-shell/Cargo.toml
Charlie Marsh 4eb19c76bd
Add Windows path updates for uv tool (#5029)
## Summary

Largely based on rustup's implementation (linked in the source).

Closes #5027.

## Test Plan

- Changed the executable directory to `uv/foo`.
- Ran script; verified that I could access executables in `foo`.
2024-07-13 01:55:05 +00:00

19 lines
403 B
TOML

[package]
name = "uv-shell"
version = "0.0.1"
edition = "2021"
description = "Utilities for detecting and manipulating shell environments"
[lints]
workspace = true
[dependencies]
uv-fs = { workspace = true }
anyhow = { workspace = true }
home = { workspace = true }
same-file = { workspace = true }
tracing = { workspace = true }
[target.'cfg(windows)'.dependencies]
winreg = { workspace = true }