Skip to content

Commit

Permalink
chore: Bump version of all Rust projects
Browse files Browse the repository at this point in the history
  • Loading branch information
vadorovsky committed May 7, 2024
1 parent 3086b80 commit 459318e
Show file tree
Hide file tree
Showing 27 changed files with 146 additions and 146 deletions.
54 changes: 27 additions & 27 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions circuit-lib/circuitlib-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-circuitlib-rs"
version = "0.1.0"
version = "0.1.1"
description = "Crate for interacting with Light Protocol circuits"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -13,10 +13,10 @@ default = ["gnark"]
[dependencies]

# light local deps
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.1.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.1.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.1.0" }
light-utils = { path = "../../utils", version = "0.1.0" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.1.1" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.1.1" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.1.1" }
light-utils = { path = "../../utils", version = "0.1.1" }
# ark dependencies
ark-serialize = "0.4.2"
ark-ec = "0.4.2"
Expand Down
4 changes: 2 additions & 2 deletions circuit-lib/verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-verifier"
version = "0.1.0"
version = "0.1.1"
description = "ZKP proof verifier used in Light Protocol"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -18,4 +18,4 @@ solana-program = { version = "1.18.11", optional = true }
[dev-dependencies]
tokio = { version = "1.36.0", features = ["rt", "macros"] }
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] }
light-circuitlib-rs = { path = "../circuitlib-rs", version = "0.1.0" }
light-circuitlib-rs = { path = "../circuitlib-rs", version = "0.1.1" }
16 changes: 8 additions & 8 deletions examples/token-escrow/programs/token-escrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "token-escrow"
version = "0.1.0"
version = "0.1.1"
description = "Solana escrow implementation using account compression"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -21,21 +21,21 @@ test-sbf = []

[dependencies]
anchor-lang = { version="0.29.0", features = ["init-if-needed"] }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.3.0", features = ["cpi"]}
light-compressed-pda = { path = "../../../../programs/compressed-pda", version = "0.3.0", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.3.1", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.1.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.1.0" }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.3.1", features = ["cpi"]}
light-compressed-pda = { path = "../../../../programs/compressed-pda", version = "0.3.1", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.3.2", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.1.1" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.1.1" }

[target.'cfg(not(target_os = "solana"))'.dependencies]
solana-sdk = "1.18.11"

[dev-dependencies]
solana-program-test = "1.18.11"
light-test-utils = { version = "0.1.0", path = "../../../../test-utils", default-features= true, features = ["test_indexer", "light_program"] }
light-test-utils = { version = "0.1.1", path = "../../../../test-utils", default-features= true, features = ["test_indexer", "light_program"] }
reqwest = "0.12"
tokio = "1.36.0"
light-circuitlib-rs = { path = "../../../../circuit-lib/circuitlib-rs", version = "0.1.0" }
light-circuitlib-rs = { path = "../../../../circuit-lib/circuitlib-rs", version = "0.1.1" }
num-bigint = "0.4.4"
num-traits = "0.2.18"
spl-token = "3.5.0"
Expand Down
2 changes: 1 addition & 1 deletion hasher.rs/src/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-wasm-hasher"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "WASM wrapper for blake2 and Poseidon hashing"
repository = "https://github.com/Lightprotocol/light-protocol"
Expand Down
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.0"
version = "0.1.1"
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 macros/aligned-sized/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aligned-sized"
version = "0.1.0"
version = "0.1.1"
description = "A macro which ensures the alignment and calculates the size of a struct"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion macros/light/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-macros"
version = "0.3.1"
version = "0.3.2"
description = "Macros used in Light Protocol on-chain programs"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion merkle-tree/bounded-vec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-bounded-vec"
version = "0.1.0"
version = "0.1.1"
description = "Bounded and cyclic vector implementations"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions merkle-tree/concurrent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-concurrent-merkle-tree"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Concurrent Merkle tree implementation"
repository = "https://github.com/Lightprotocol/light-protocol"
Expand All @@ -17,16 +17,16 @@ solana = [
[dependencies]
borsh = "0.10"
bytemuck = "1.14"
light-bounded-vec = { path = "../bounded-vec", version = "0.1.0" }
light-hasher = { path = "../hasher", version = "0.1.0" }
light-bounded-vec = { path = "../bounded-vec", version = "0.1.1" }
light-hasher = { path = "../hasher", version = "0.1.1" }
memoffset = "0.8"
solana-program = { version = "1.18.11", optional = true }
thiserror = "1.0"

[dev-dependencies]
ark-bn254 = "0.4"
ark-ff = "0.4"
light-merkle-tree-reference = { path = "../reference", version = "0.1.0" }
light-merkle-tree-reference = { path = "../reference", version = "0.1.1" }
rand = "0.8"
solana-program = { version = "1.18.11" }
spl-account-compression = "0.3.0"
Expand Down
Loading

0 comments on commit 459318e

Please sign in to comment.