Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump version of all Rust projects #1020

Merged
merged 1 commit into from
Jul 23, 2024
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
60 changes: 30 additions & 30 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/light-prover-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-prover-client"
version = "0.2.1"
version = "0.3.0"
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.2.1" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.2.1" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.2.1" }
light-utils = { path = "../../utils", version = "0.2.1" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.3.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.3.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.3.0" }
light-utils = { path = "../../utils", version = "0.3.0" }
# 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.2.1"
version = "0.3.0"
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 = { workspace = true, optional = true }
[dev-dependencies]
tokio = { version = "1.38.0", features = ["rt", "macros"] }
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] }
light-prover-client = { path = "../light-prover-client", version = "0.2.1" }
light-prover-client = { path = "../light-prover-client", version = "0.3.0" }
18 changes: 9 additions & 9 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.2.1"
version = "0.3.0"
description = "Solana escrow implementation using account compression"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -21,22 +21,22 @@ idl-build = ["anchor-lang/idl-build", "anchor-spl/idl-build"]

[dependencies]
anchor-lang = { workspace = true, features = ["init-if-needed"] }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.4.1", features = ["cpi"]}
light-system-program = { path = "../../../../programs/system", version = "0.4.1", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.4.1", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.2.1" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.2.1" }
light-sdk = { path = "../../../../sdk", version = "0.2.1", features = ["cpi"] }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.5.0", features = ["cpi"]}
light-system-program = { path = "../../../../programs/system", version = "0.5.0", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.5.0", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.3.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.3.0" }
light-sdk = { path = "../../../../sdk", version = "0.3.0", features = ["cpi"] }

[target.'cfg(not(target_os = "solana"))'.dependencies]
solana-sdk = { workspace = true }

[dev-dependencies]
solana-program-test = { workspace = true }
light-test-utils = { version = "0.2.1", path = "../../../../test-utils" }
light-test-utils = { version = "0.3.0", path = "../../../../test-utils" }
reqwest = "0.12"
tokio = "1.38.0"
light-prover-client = { path = "../../../../circuit-lib/light-prover-client", version = "0.2.1" }
light-prover-client = { path = "../../../../circuit-lib/light-prover-client", version = "0.3.0" }
num-bigint = "0.4.6"
num-traits = "0.2.18"
spl-token = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion forester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forester"
version = "0.2.1"
version = "0.3.0"
edition = "2021"

[dependencies]
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.2.1"
version = "0.3.0"
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.2.1"
version = "0.3.0"
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.2.1"
version = "0.3.0"
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.4.1"
version = "0.5.0"
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.2.1"
version = "0.3.0"
description = "Bounded and cyclic vector implementations"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
Loading