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

## Summary I haven't tested on Windows yet, but the idea here is that we should use a portable representation when printing paths. I decided to limit the scope here to paths that we write to output files. Closes https://github.com/astral-sh/uv/issues/3800.
37 lines
911 B
TOML
37 lines
911 B
TOML
[package]
|
|
name = "uv-fs"
|
|
version = "0.0.1"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-warnings = { workspace = true }
|
|
|
|
backoff = { workspace = true }
|
|
cachedir = { workspace = true }
|
|
dunce = { workspace = true }
|
|
either = { workspace = true }
|
|
encoding_rs_io = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
fs2 = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
path-absolutize = { workspace = true }
|
|
path-slash = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tracing = { workspace = true }
|
|
urlencoding = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
junction = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
tokio = ["fs-err/tokio", "backoff/tokio"]
|