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,011 changes: 600 additions & 411 deletions account-comparison/Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions account-comparison/programs/account-comparison/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ idl-build = ["anchor-lang/idl-build"]

[dependencies]
anchor-lang = "0.31.1"
light-hasher = { version = "5.0.0", features = ["solana"] }
light-sdk = { version = "0.17", features = ["anchor", "v2"] }
light-sdk-types = { version = "0.17.1", features = ["anchor", "v2"] }
light-hasher = "5.0.0"
light-sdk = { version = "0.18.0", features = ["anchor", "anchor-discriminator", "cpi-context"] }

[dev-dependencies]
light-client = "0.17.2"
light-client = "0.18.0"
litesvm = "0.7.1"
solana-keypair = "2.2"
solana-message = "2.2"
solana-pubkey = { version = "2.2", features = ["curve25519", "sha2"] }
solana-signer = "2.2"
solana-transaction = "2.2"
light-program-test = "0.17.1"
light-program-test = "0.18.0"
tokio = "1.43.0"
solana-sdk = "2.2"
blake3 = "=1.8.2"

[lints.rust.unexpected_cfgs]
level = "allow"
Expand Down
2 changes: 1 addition & 1 deletion account-comparison/programs/account-comparison/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use light_sdk::{
instruction::{account_meta::CompressedAccountMeta, PackedAddressTreeInfo, ValidityProof},
LightDiscriminator, LightHasher,
};
use light_sdk_types::ADDRESS_TREE_V2;
use light_sdk::constants::ADDRESS_TREE_V2;

#[error_code]
pub enum CustomError {
Expand Down
Loading
Loading