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
42 changes: 21 additions & 21 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ members = [
# Workspace Package Metadata (inherited by all crates)
# ─────────────────────────────────────────────────────────────────────────────
[workspace.package]
version = "0.6.9"
version = "0.6.10"
edition = "2024"
# No `rust-version` claim: the workspace is structurally nightly-only.
# `crates/uffs-polars` enables `polars/nightly` unconditionally, which
Expand Down Expand Up @@ -126,28 +126,28 @@ publish = false
# proposed-plan output for 12 days because `release-plz update`
# failed at `cargo package` with this very error. See
# `release-automation-baseline.md` §10 for the diagnostic trail.
uffs-polars = { path = "crates/uffs-polars", version = "0.6.9" }
uffs-security = { path = "crates/uffs-security", version = "0.6.9" }
uffs-text = { path = "crates/uffs-text", version = "0.6.9" }
uffs-time = { path = "crates/uffs-time", version = "0.6.9" }
uffs-mft = { path = "crates/uffs-mft", version = "0.6.9" }
uffs-format = { path = "crates/uffs-format", version = "0.6.9" }
uffs-core = { path = "crates/uffs-core", version = "0.6.9" }
uffs-client = { path = "crates/uffs-client", version = "0.6.9" }
uffs-polars = { path = "crates/uffs-polars", version = "0.6.10" }
uffs-security = { path = "crates/uffs-security", version = "0.6.10" }
uffs-text = { path = "crates/uffs-text", version = "0.6.10" }
uffs-time = { path = "crates/uffs-time", version = "0.6.10" }
uffs-mft = { path = "crates/uffs-mft", version = "0.6.10" }
uffs-format = { path = "crates/uffs-format", version = "0.6.10" }
uffs-core = { path = "crates/uffs-core", version = "0.6.10" }
uffs-client = { path = "crates/uffs-client", version = "0.6.10" }
# `uffs-broker-protocol` carries the wire-protocol types shared between
# `uffs-broker` (the elevated handle vendor, Windows-only binary) and
# `uffs-daemon::broker_client` (the handle consumer). Pure-logic
# Layer-0 lib — cross-platform tests run on every CI lane. Added in
# F5 (issue #205) so neither side duplicates `BROKER_PIPE_NAME` /
# wire-format byte literals.
uffs-broker-protocol = { path = "crates/uffs-broker-protocol", version = "0.6.9" }
uffs-broker-protocol = { path = "crates/uffs-broker-protocol", version = "0.6.10" }
# `uffs-winsvc` — native Windows service control (SCM query/start/stop) +
# the non-connecting broker-pipe readiness probe. Layer-0 leaf: its only
# dependency is the `windows` crate (windows-target), with non-Windows
# stubs so cross-platform consumers (uffs-update, uffs-cli) compile.
# Single source of truth for the `sc`/SCM mechanics previously duplicated
# across uffs-broker, uffs-update, and uffs-cli.
uffs-winsvc = { path = "crates/uffs-winsvc", version = "0.6.9" }
uffs-winsvc = { path = "crates/uffs-winsvc", version = "0.6.10" }
# NOTE: no `uffs-broker` workspace dependency alias on purpose —
# `uffs-broker` is a binary-only crate (the only `[lib]` it carries is
# this protocol module's now-extracted sibling); no other workspace
Expand Down
4 changes: 2 additions & 2 deletions crates/uffs-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ path = "src/main.rs"
# `version = "0.5.90"` is required for `cargo package` validation —
# see root `Cargo.toml`'s [workspace.dependencies] note for the full
# rationale (R6 of `release-automation-plan.md`).
uffs-client = { path = "../uffs-client", version = "0.6.9", default-features = false }
uffs-client = { path = "../uffs-client", version = "0.6.10", default-features = false }

# Canonical CSV / parity / legacy-footer writer. Direct dep (not a
# re-export chain through `uffs-client`) so the CLI and the daemon
# hit the same `uffs_format::*` symbols without an indirection layer.
# `version = "0.5.90"` is required for `cargo package` validation —
# see root `Cargo.toml`'s [workspace.dependencies] note for the full
# rationale (R6 of `release-automation-plan.md`).
uffs-format = { path = "../uffs-format", version = "0.6.9" }
uffs-format = { path = "../uffs-format", version = "0.6.10" }

# Typed drive-letter newtype. Direct dep so the CLI command signatures
# (`daemon_load`, `daemon_tiering`, etc.) name `DriveLetter` natively
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# Run `just toolchain-sync` to re-attempt a channel bump; the CI
# pipeline auto-refreshes on `ship --fresh` unless `--skip-toolchain-sync`
# is passed.
channel = "nightly-2026-06-17"
channel = "nightly-2026-06-18"

# Specify components that should always be available
components = [
Expand Down
Loading