mirror of
https://github.com/astral-sh/uv
synced 2026-01-25 07:20:10 -05:00
## Summary This may be required elsewhere, but all the traces in that issue are related to persisting the temporary directory to our persistent cache, so lets start there. See: https://github.com/astral-sh/uv/issues/1491.
32 lines
771 B
TOML
32 lines
771 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 = { path = "../uv-warnings" }
|
|
|
|
backoff = { workspace = true }
|
|
dunce = { workspace = true }
|
|
encoding_rs_io = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
fs2 = { workspace = true }
|
|
junction = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, optional = true }
|
|
tracing = { workspace = true }
|
|
urlencoding = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
tokio = ["dep:tokio", "fs-err/tokio", "backoff/tokio"]
|