Skip to content

Pin solana_parser deps to real immutable rev instead of branch reference#219

Closed
Copilot wants to merge 2 commits into
shahankhatch/proptest-w-arbitraryfrom
copilot/sub-pr-203
Closed

Pin solana_parser deps to real immutable rev instead of branch reference#219
Copilot wants to merge 2 commits into
shahankhatch/proptest-w-arbitraryfrom
copilot/sub-pr-203

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 23, 2026

Both solana_parser dependencies (main and dev) were pointing at a mutable branch reference, making builds non-reproducible. A previous attempt to fix this used a hallucinated commit SHA.

Changes

  • Cargo.toml: Replace branch = "solana-parser-add-arbitrary" with the actual HEAD SHA of that branch, fetched via git ls-remote:
# Before
solana_parser = { git = "https://github.com/anchorageoss/solana-parser.git", branch = "solana-parser-add-arbitrary" }

# After
solana_parser = { git = "https://github.com/anchorageoss/solana-parser.git", rev = "a0c554d7a4d756cbe6c9bed080737faa9aa74705" }

Same rev applied to the [dev-dependencies] entry (with features = ["proptest"] preserved).


📱 Kick off Copilot coding agent tasks wherever you are with GitHub Mobile, available on iOS and Android.

Copilot AI changed the title [WIP] [WIP] Addressing feedback on proptest-based fuzz and pipeline tests for Solana IDL parsing Pin solana_parser deps to real immutable rev instead of branch reference Mar 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants