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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Rust toolchain (per rust-toolchain.toml)
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.97.1
toolchain: 1.98.1
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: cargo check --workspace --all-targets
Expand Down
6 changes: 4 additions & 2 deletions crates/ogar-a2ui-frame/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,10 @@ impl Frame {
});
}
let mask_words = payload[FIXED..mask_end]
.chunks_exact(8)
.map(|c| u64::from_le_bytes([c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7]]))
.as_chunks::<8>()
.0
.iter()
.map(|c| u64::from_le_bytes(*c))
.collect();
Ok(Self::NodeDelta(NodeDelta {
key,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
//! - G1: segmentation is GREEN over the mixed core+R2IL body, and the edit
//! is CONFINED: outside the edited statement's `CallMask`, the projected
//! calls of factual and counterfactual slabs are identical; inside, they
//! differ (the lens proves locality — can-fire + can-stay-silent).
//! differ (the lens proves locality — can-fire + can-stay-silent).
//! - G2a (CF-1a intra-run swap): byte > 0, exact-area > 0, increment == 0
//! (net per-locus counts unchanged — increments are structurally blind
//! to dataflow order), register == 0 — the orientation bit is
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.97.1"
channel = "1.98.1"
components = ["rustfmt", "clippy"]
profile = "minimal"
Loading