Skip to content

Commit 8861c6c

Browse files
committed
fix: use released crates for light-hasher and light-merkle-tree-reference in zk-id
Changed from git dependencies to crates.io versions: - light-hasher: 5.0.0 - light-merkle-tree-reference: 4.0.0
1 parent e7e2601 commit 8861c6c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

zk/zk-id/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ num-bigint = "0.4"
1919
serde_json = "1.0"
2020
solana-sdk = "2.2"
2121
tokio = "1.40.0"
22-
light-hasher = { git = "https://github.com/Lightprotocol/light-protocol", rev = "b043f6225a04d75ee7e06ccbab21c582032ec673", features = ["sha256", "keccak", "poseidon"] }
22+
light-hasher = { version = "5.0.0", features = ["sha256", "keccak", "poseidon"] }
2323
light-compressed-account = "0.8.0"
24-
light-merkle-tree-reference = { git = "https://github.com/Lightprotocol/light-protocol", rev = "b043f6225a04d75ee7e06ccbab21c582032ec673" }
24+
light-merkle-tree-reference = "4.0.0"
2525
light-program-test = "0.18.0"
2626
light-client = "0.18.0"
2727
light-sdk = { version = "0.18.0", features = ["anchor", "poseidon", "merkle-tree"] }

zk/zk-id/programs/zk-id/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rust-witness = "0.1"
2929
num-bigint = "0.4"
3030
serde_json = "1.0"
3131
light-compressed-account = "0.8.0"
32-
light-merkle-tree-reference = { git = "https://github.com/Lightprotocol/light-protocol", rev = "b043f6225a04d75ee7e06ccbab21c582032ec673" }
32+
light-merkle-tree-reference = "4.0.0"
3333
groth16-solana = { git = "https://github.com/Lightprotocol/groth16-solana", features = ["vk", "circom"], rev = "66c0dc87d0808c4d2aadb53c61435b6edb8ddfd9" }
3434
blake3 = "=1.8.2"
3535

0 commit comments

Comments
 (0)