Certain filesystems for large monorepos are slow to service individual read requests, but can service many in parallel. This change brings down the time to run a single cached test on one of those filesystems from 40s to about 8s.
44 lines
991 B
TOML
44 lines
991 B
TOML
[package]
|
|
name = "compiletest"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
anstyle-svg = "0.1.3"
|
|
build_helper = { path = "../../build_helper" }
|
|
camino = "1"
|
|
colored = "2"
|
|
diff = "0.1.10"
|
|
getopts = "0.2"
|
|
glob = "0.3.0"
|
|
home = "0.5.5"
|
|
indexmap = "2.0.0"
|
|
miropt-test-tools = { path = "../miropt-test-tools" }
|
|
rayon = "1.10.0"
|
|
regex = "1.0"
|
|
rustfix = "0.8.1"
|
|
semver = { version = "1.0.23", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["ansi", "env-filter", "fmt", "parking_lot", "smallvec"] }
|
|
unified-diff = "0.2.1"
|
|
walkdir = "2"
|
|
# tidy-alphabetical-end
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
miow = "0.6"
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
version = "0.59.0"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Diagnostics_Debug",
|
|
]
|