Skip to content
Merged
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
14 changes: 7 additions & 7 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ light-sdk = { path = "sdk-libs/sdk", version = "0.17.1" }
light-sdk-pinocchio = { path = "sdk-libs/sdk-pinocchio", version = "0.17.1" }
light-sdk-macros = { path = "sdk-libs/macros", version = "0.17.1" }
light-sdk-types = { path = "sdk-libs/sdk-types", version = "0.17.1", default-features = false }
light-compressed-account = { path = "program-libs/compressed-account", version = "0.7.0", default-features = false }
light-compressible = { path = "program-libs/compressible", version = "0.2.0", default-features = false }
light-token-interface = { path = "program-libs/token-interface", version = "0.1.0" }
light-compressed-account = { path = "program-libs/compressed-account", version = "0.8.0", default-features = false }
light-compressible = { path = "program-libs/compressible", version = "0.3.0", default-features = false }
light-token-interface = { path = "program-libs/token-interface", version = "0.1.1" }
light-account-checks = { path = "program-libs/account-checks", version = "0.6.0", default-features = false }
light-verifier = { path = "program-libs/verifier", version = "6.0.0" }
light-zero-copy = { path = "program-libs/zero-copy", version = "0.5.0", default-features = false }
light-zero-copy-derive = { path = "program-libs/zero-copy-derive", version = "0.5.0" }
light-verifier = { path = "program-libs/verifier", version = "7.0.0" }
light-zero-copy = { path = "program-libs/zero-copy", version = "0.6.0", default-features = false }
light-zero-copy-derive = { path = "program-libs/zero-copy-derive", version = "0.6.0" }
photon-api = { path = "sdk-libs/photon-api", version = "0.53.0" }
forester-utils = { path = "forester-utils", version = "2.0.0" }
account-compression = { path = "programs/account-compression", version = "2.0.0", features = [
Expand All @@ -217,8 +217,8 @@ create-address-test-program = { path = "program-tests/create-address-test-progra
"cpi",
] }
light-program-test = { path = "sdk-libs/program-test", version = "0.17.1" }
light-batched-merkle-tree = { path = "program-libs/batched-merkle-tree", version = "0.7.0" }
light-merkle-tree-metadata = { path = "program-libs/merkle-tree-metadata", version = "0.7.0" }
light-batched-merkle-tree = { path = "program-libs/batched-merkle-tree", version = "0.8.0" }
light-merkle-tree-metadata = { path = "program-libs/merkle-tree-metadata", version = "0.8.0" }
aligned-sized = { path = "program-libs/aligned-sized", version = "1.1.0" }
light-bloom-filter = { path = "program-libs/bloom-filter", version = "0.5.0" }
light-bounded-vec = { version = "2.0.1" }
Expand Down
2 changes: 1 addition & 1 deletion program-libs/batched-merkle-tree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-batched-merkle-tree"
version = "0.7.0"
version = "0.8.0"
description = "Batch Merkle tree implementation."
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion program-libs/compressed-account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-compressed-account"
version = "0.7.0"
version = "0.8.0"
description = "Compressed account struct and common utility functions used in Light Protocol."
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion program-libs/compressible/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-compressible"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
description = "Light Protocol compressible data structures"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion program-libs/merkle-tree-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-merkle-tree-metadata"
version = "0.7.0"
version = "0.8.0"
description = "Merkle tree metadata for light-concurrent-merkle-tree, light-indexed-merkle-tree, light-batched-merkle-tree."
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion program-libs/verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-verifier"
version = "6.0.0"
version = "7.0.0"
description = "ZKP proof verifier used in Light Protocol"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion program-libs/zero-copy-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-zero-copy-derive"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
description = "Proc macro for zero-copy deserialization"
Expand Down
2 changes: 1 addition & 1 deletion program-libs/zero-copy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-zero-copy"
version = "0.5.0"
version = "0.6.0"
description = "Zero copy vector and utils for Solana programs."
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
Loading