Skip to content

Commit

Permalink
chore: Bump version of Rust project light-heap (#725)
Browse files Browse the repository at this point in the history
Co-authored-by: SwenSchaeferjohann <[email protected]>
  • Loading branch information
github-actions[bot] and SwenSchaeferjohann authored May 15, 2024
1 parent 61e14c1 commit 5049b40
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion heap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-heap"
version = "0.1.1"
version = "0.1.2"
description = "Custom heap allocator used in Light Protocol"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion merkle-tree/hash-set/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ num-traits = "0.2"
solana-program = { version = "1.18.11", optional = true }
thiserror = "1.0"
[target.'cfg(target_os = "solana")'.dependencies]
light-heap = { path = "../../heap", version = "0.1.1" }
light-heap = { path = "../../heap", version = "0.1.2" }

[dev-dependencies]
ark-bn254 = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion programs/account-compression/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ bytemuck = { version = "1.14", features = ["min_const_generics"] }
light-bounded-vec = { version = "0.1.1", path = "../../merkle-tree/bounded-vec", features = ["solana"] }
light-hash-set = { version = "0.1.1", path = "../../merkle-tree/hash-set", features = ["solana"] }
light-hasher = { version = "0.1.1", path = "../../merkle-tree/hasher", features = ["solana"] }
light-heap = { version = "0.1.1", path = "../../heap", optional = true }
light-heap = { version = "0.1.2", path = "../../heap", optional = true }
light-concurrent-merkle-tree = { version = "0.1.1", path = "../../merkle-tree/concurrent", features = ["solana"] }
light-indexed-merkle-tree = { version = "0.1.1", path = "../../merkle-tree/indexed", features = ["solana"] }
light-utils = { version = "0.1.1", path = "../../utils" }
Expand Down
2 changes: 1 addition & 1 deletion programs/compressed-token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ light-system-program = { version = "0.3.1", path = "../system", features = ["cpi
bytemuck = "1.14"
solana-security-txt = "1.1.0"
light-hasher = { version = "0.1.1", path = "../../merkle-tree/hasher" }
light-heap = { version = "0.1.1", path = "../../heap", optional = true }
light-heap = { version = "0.1.2", path = "../../heap", optional = true }
light-utils = { version = "0.1.1", path = "../../utils" }
light-verifier = { version = "0.1.1", path = "../../circuit-lib/verifier" }

Expand Down
2 changes: 1 addition & 1 deletion programs/registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ aligned-sized = { version = "0.1.1", path = "../../macros/aligned-sized" }
anchor-lang = "0.29.0"
bytemuck = "1.14"
light-hasher = { version = "0.1.1", path = "../../merkle-tree/hasher" }
light-heap = { version = "0.1.1", path = "../../heap", optional = true }
light-heap = { version = "0.1.2", path = "../../heap", optional = true }
account-compression = { version = "0.3.2", path = "../account-compression", features = ["cpi"] }

[target.'cfg(not(target_os = "solana"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion programs/system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ aligned-sized = { version = "0.1.1", path = "../../macros/aligned-sized" }
anchor-lang = "0.29.0"
bytemuck = "1.14"
light-hasher = { version = "0.1.1", path = "../../merkle-tree/hasher" }
light-heap = { version = "0.1.1", path = "../../heap", optional = true }
light-heap = { version = "0.1.2", path = "../../heap", optional = true }
light-macros = { path = "../../macros/light", version = "0.3.2" }
account-compression = { version = "0.3.2", path = "../account-compression", features = ["cpi"] }
light-concurrent-merkle-tree = { path = "../../merkle-tree/concurrent", version = "0.1.1" }
Expand Down
2 changes: 1 addition & 1 deletion test-programs/account-compression-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ solana-cli-output = "1.18.11"
serde_json = "1.0.114"
solana-sdk = "1.18.11"
thiserror = "1.0"
memoffset = "0.9.1"
memoffset = "0.9.1"

0 comments on commit 5049b40

Please sign in to comment.