Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
6639080
Render signed PHIR registers as two's-complement bits instead of a si…
ciaranra Jul 7, 2026
5e43726
Widen signed register bit strings to size+1 so the sign bit prints
ciaranra Jul 7, 2026
4e436b0
Merge branch 'dev' into binary-str-sign-fix
ciaranra Jul 8, 2026
78214ab
Model PHIR classical registers as signed i(S+1)/unsigned u(S) integer…
ciaranra Jul 8, 2026
7bd54ab
Fix review follow-ups: lossless 64-bit register export, boolean ~/&&/…
ciaranra Jul 8, 2026
00bd0d0
Fix Path-B Result handling: lossless 64-bit source copies, indexed-de…
ciaranra Jul 9, 2026
5287d23
Rework Path-B block execution into a yielding stack cursor with per-q…
ciaranra Jul 9, 2026
caa2233
Warn on wrong-version LLVM tools on PATH and auto-configure .cargo/co…
ciaranra Jul 9, 2026
abde3c5
Resolve LLVM tools from the managed install and preload libLLVM at im…
ciaranra Jul 9, 2026
87085e7
Use rustls with the ring provider instead of aws-lc-rs so build scrip…
ciaranra Jul 9, 2026
af430dd
Fix rustfmt formatting and match the unknown-block test against the l…
ciaranra Jul 9, 2026
82d0e04
Preload libLLVM only as an import-failure fallback so self-contained …
ciaranra Jul 10, 2026
0c8ddaf
Bump crossbeam-epoch to 0.9.20 to resolve RUSTSEC-2026-0204
ciaranra Jul 10, 2026
be9977b
Fix clippy lints surfaced by Rust 1.97 (manual_assert_eq, question_ma…
ciaranra Jul 10, 2026
601ce41
Add a stale Rust stable advisory to 'just doctor' since CI runs the l…
ciaranra Jul 10, 2026
012beba
Merge branch 'dev' into binary-str-sign-fix
ciaranra Jul 10, 2026
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
184 changes: 5 additions & 179 deletions Cargo.lock

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

11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,18 @@ petgraph = "0.8"
rustworkx-core = "0.18"

# --- Networking & archive handling ---
# Use rustls WITHOUT its default aws-lc-rs crypto provider: aws-lc-sys ships
# hand-written assembly whose .eh_frame rustc's bundled rust-lld mis-links
# ("invalid CIE reference"), breaking build-script links on some toolchains.
# We install the `ring` provider at runtime instead (see pecos-build download).
reqwest = { version = "0.13", default-features = false, features = [
"blocking",
"rustls",
"rustls-no-provider",
] }
rustls = { version = "0.23", default-features = false, features = [
"ring",
"std",
"tls12",
] }
flate2 = "1"
sha2 = "0.11"
Expand Down
Loading
Loading