Skip to content

Commit a6a6d22

Browse files
swenswen
authored andcommitted
wip
1 parent b3845ed commit a6a6d22

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

examples/name-service/programs/name-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ light-utils = { path = "../../../../utils", version = "0.4.2" }
3434
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.4.2" }
3535

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

3939
[dev-dependencies]
4040
light-test-utils = { path = "../../../../test-utils", version = "0.4.2" }
41-
solana-program-test = "1.18.11"
41+
solana-program-test = { workspace = true }
4242
tokio = "1.36.0"

scripts/release-all-rust-crates.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ echo "Tagging and releasing all Rust projects..."
1212
echo "Logging in to crates.io..."
1313
cargo login "${CRATES_IO_TOKEN}"
1414
# TODO: allow dynamic releases, and add gh release workflow
15-
PACKAGES=("aligned-sized" "light-heap" "light-bounded-vec" "light-utils" "light-hasher" "light-macros" "light-hash-set" "light-merkle-tree-reference" "light-concurrent-merkle-tree" "light-indexed-merkle-tree" "light-prover-client" "light-verifier" "account-compression" "light-system-program" "light-registry" "light-compressed-token" "photon-api" "light-test-utils" "light-sdk")
15+
PACKAGES=("light-hash-set" "light-merkle-tree-reference" "light-concurrent-merkle-tree" "light-indexed-merkle-tree" "light-prover-client" "light-verifier" "account-compression" "light-system-program" "light-registry" "light-compressed-token" "photon-api" "light-test-utils" "light-sdk")
16+
# PACKAGES=("aligned-sized" "light-heap" "light-bounded-vec" "light-utils" "light-hasher" "light-macros" "light-hash-set" "light-merkle-tree-reference" "light-concurrent-merkle-tree" "light-indexed-merkle-tree" "light-prover-client" "light-verifier" "account-compression" "light-system-program" "light-registry" "light-compressed-token" "photon-api" "light-test-utils" "light-sdk")
1617
# PACKAGES=("photon-api" "light-test-utils" "light-sdk")
1718
for PACKAGE in "${PACKAGES[@]}"; do
1819
PKG_VERSION=$(cargo pkgid -p "$PACKAGE" | cut -d "#" -f2)

0 commit comments

Comments
 (0)