mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

## 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`.
19 lines
403 B
TOML
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 }
|