Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"crates/driven-drive",
"crates/driven-crypto",
"crates/driven-power",
"crates/driven-diskstat",
"crates/driven-vss",
"crates/driven-vss-helper",
"crates/driven-net",
Expand Down
4 changes: 4 additions & 0 deletions crates/driven-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ sqlx = { version = "0.9", default-features = false, features = [
driven-drive = { path = "../driven-drive" }
driven-crypto = { path = "../driven-crypto" }
driven-power = { path = "../driven-power" }
# Per-OS disk-busy reader for the adaptive upload-parallelism controller
# (DESIGN s11.4.7 / s18.2). Same acyclic shape as driven-power: it carries no
# driven-core dep.
driven-diskstat = { path = "../driven-diskstat" }
# M3.5 Windows VSS reads for exclusively-locked files (ROADMAP M3.5, DESIGN
# s5.3). The executor consults the `VssProvider` seam on its open path; the
# orchestrator owns the per-cycle snapshot lifecycle + orphan cleanup. The
Expand Down
Loading