mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
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 }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
dunce = { workspace = true }
|
|
either = { workspace = true }
|
|
encoding_rs_io = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
path-slash = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
same-file = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, optional = true}
|
|
tracing = { workspace = true }
|
|
|
|
[target.'cfg(any(unix, target_os = "wasi", target_os = "redox"))'.dependencies]
|
|
rustix = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
backon = { workspace = true }
|
|
junction = { workspace = true }
|
|
windows = { workspace = true }
|
|
windows-core = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
tokio = ["dep:tokio", "fs-err/tokio"]
|