Skip to content

Commit

Permalink
chore: Bump version of all Rust projects (#1118)
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 Aug 28, 2024
1 parent 0a82527 commit eaa880c
Show file tree
Hide file tree
Showing 31 changed files with 180 additions and 180 deletions.
62 changes: 31 additions & 31 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.3.0"
version = "0.4.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.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" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.4.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.4.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.4.0" }
light-utils = { path = "../../utils", version = "0.4.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.3.0"
version = "0.4.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.3.0" }
light-prover-client = { path = "../light-prover-client", version = "0.4.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.1.0"
version = "0.2.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.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-heap = { path = "../../../../heap", version = "0.3.0", optional = true }
light-macros = { path = "../../../../macros/light", version = "0.5.0" }
light-sdk = { path = "../../../../sdk", version = "0.3.0" }
light-utils = { path = "../../../../utils", version = "0.3.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.3.0" }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.6.0", features = ["cpi"] }
light-system-program = { path = "../../../../programs/system", version = "0.6.0", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.6.0", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.4.0" }
light-heap = { path = "../../../../heap", version = "0.4.0", optional = true }
light-macros = { path = "../../../../macros/light", version = "0.6.0" }
light-sdk = { path = "../../../../sdk", version = "0.4.0" }
light-utils = { path = "../../../../utils", version = "0.4.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.4.0" }

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

[dev-dependencies]
light-test-utils = { path = "../../../../test-utils", version = "0.3.0" }
light-test-utils = { path = "../../../../test-utils", version = "0.4.0" }
solana-program-test = "1.18.11"
tokio = "1.36.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.3.0"
version = "0.4.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.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"] }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.6.0", features = ["cpi"]}
light-system-program = { path = "../../../../programs/system", version = "0.6.0", features = ["cpi"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.6.0", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.4.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.4.0" }
light-sdk = { path = "../../../../sdk", version = "0.4.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.3.0", path = "../../../../test-utils" }
light-test-utils = { version = "0.4.0", path = "../../../../test-utils" }
reqwest = "0.12"
tokio = { workspace = true }
light-prover-client = { path = "../../../../circuit-lib/light-prover-client", version = "0.3.0" }
light-prover-client = { path = "../../../../circuit-lib/light-prover-client", version = "0.4.0" }
num-bigint = "0.4.6"
num-traits = "0.2.19"
spl-token = { workspace = true }
Expand Down
Loading

0 comments on commit eaa880c

Please sign in to comment.