Skip to content

Commit

Permalink
chore: Bump version of all Rust projects (#1168)
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 Sep 8, 2024
1 parent c7491d0 commit c26f3d7
Show file tree
Hide file tree
Showing 32 changed files with 197 additions and 197 deletions.
64 changes: 32 additions & 32 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.5.0"
version = "0.6.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.5.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.5.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.5.0" }
light-utils = { path = "../../utils", version = "0.5.0" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.6.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.6.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.6.0" }
light-utils = { path = "../../utils", version = "0.6.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.5.0"
version = "0.6.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 = { workspace = true }
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] }
light-prover-client = { path = "../light-prover-client", version = "0.5.0" }
light-prover-client = { path = "../light-prover-client", version = "0.6.0" }
22 changes: 11 additions & 11 deletions examples/name-service/programs/name-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "name-service"
version = "0.3.0"
version = "0.4.0"
description = "Created with Anchor"
edition = "2021"
rust-version = "1.75.0"
Expand All @@ -23,20 +23,20 @@ bench-sbf = []
[dependencies]
anchor-lang = { workspace = true, features = ["init-if-needed"] }
borsh = "0.10"
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.7.0", features = ["cpi"] }
light-system-program = { path = "../../../../programs/system", version = "0.7.0", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.7.0", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.5.0" }
light-heap = { path = "../../../../heap", version = "0.5.0", optional = true }
light-macros = { path = "../../../../macros/light", version = "0.7.0" }
light-sdk = { path = "../../../../sdk", version = "0.5.0" }
light-utils = { path = "../../../../utils", version = "0.5.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.5.0" }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.8.0", features = ["cpi"] }
light-system-program = { path = "../../../../programs/system", version = "0.8.0", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.8.0", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.6.0" }
light-heap = { path = "../../../../heap", version = "0.6.0", optional = true }
light-macros = { path = "../../../../macros/light", version = "0.8.0" }
light-sdk = { path = "../../../../sdk", version = "0.6.0" }
light-utils = { path = "../../../../utils", version = "0.6.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.6.0" }

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

[dev-dependencies]
light-test-utils = { path = "../../../../test-utils", version = "0.5.0" }
light-test-utils = { path = "../../../../test-utils", version = "0.6.0" }
solana-program-test = { workspace = true }
tokio = "1.36.0"
Loading

0 comments on commit c26f3d7

Please sign in to comment.