70e0967dbd
Scott schafer got me the idea: We can avoid repeating the path for workspaces dependencies everywhere if we declare them in the virtual package once and treat them as workspace dependencies from there on.
33 lines
797 B
TOML
33 lines
797 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 }
|
|
dunce = { workspace = true }
|
|
encoding_rs_io = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
fs2 = { workspace = true }
|
|
junction = { workspace = true }
|
|
once_cell = { 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"]
|