Skip to content
Open
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
1,054 changes: 730 additions & 324 deletions account-comparison/Cargo.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions account-comparison/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ codegen-units = 1
opt-level = 3
incremental = false
codegen-units = 1

# Unpublished light-client 0.25.0 (transaction v1 support). Redirect every light-*
# crate used here to the same light-sdks commit so only one copy of each is built.
[patch.crates-io]
light-sdk = { git = "https://github.com/Lightprotocol/light-sdks", rev = "457559391e6b76fbb58c91d5326624dbe4ad870a" }
light-hasher = { git = "https://github.com/Lightprotocol/light-sdks", rev = "457559391e6b76fbb58c91d5326624dbe4ad870a" }
light-client = { git = "https://github.com/Lightprotocol/light-sdks", rev = "457559391e6b76fbb58c91d5326624dbe4ad870a" }
2 changes: 1 addition & 1 deletion account-comparison/programs/account-comparison/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ light-hasher = "6.0.0"
light-sdk = { version = "0.24.0", features = ["anchor", "cpi-context", "keccak"] }

[dev-dependencies]
light-client = "0.24.0"
light-client = "0.25.0"
solana-instruction = "3.4"
solana-keypair = "3.1.2"
solana-pubkey = { version = "4.2", features = ["curve25519", "sha2"] }
Expand Down
Loading
Loading