Skip to content

Commit 7da5fd3

Browse files
committed
chore: new git deps
1 parent fdd1f43 commit 7da5fd3

File tree

10 files changed

+145
-36
lines changed

10 files changed

+145
-36
lines changed

.github/workflows/examples.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,8 @@ jobs:
7272
node-version: "20.x"
7373
cache: "pnpm"
7474

75-
- name: Install root dependencies
76-
run: make install
77-
78-
- name: Build TypeScript client
79-
working-directory: clients/typescript
80-
run: |
81-
pnpm install
82-
pnpm build
75+
- name: Install and build root dependencies
76+
run: make install && make build
8377

8478
- name: Test TypeScript client
8579
working-directory: clients/typescript

.github/workflows/rust-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ jobs:
6464
solana --version
6565
light --version
6666
67-
- name: Build Solana program run all tests
67+
- name: Build Solana program and run all tests
6868
run: make test

Cargo.lock

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ syn = "2.0.72"
4949
thiserror = { version = "2.0", default-features = false }
5050
tokio = "1.43.0"
5151
bs58 = "0.4"
52-
light-sdk-pinocchio = { path = "../light-protocol3/sdk-libs/sdk-pinocchio", default-features = false, features = ["v2"] }
53-
light-sdk-types = { path = "../light-protocol3/sdk-libs/sdk-types", default-features = false, features = ["v2"] }
54-
light-macros = { path = "../light-protocol3/program-libs/macros", default-features = false }
55-
light-compressed-account = { path = "../light-protocol3/program-libs/compressed-account", default-features = false }
56-
light-hasher = { path = "../light-protocol3/program-libs/hasher", default-features = false}
52+
light-sdk-pinocchio = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", default-features = false, features = ["v2"] }
53+
light-sdk-types = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", default-features = false, features = ["v2"] }
54+
light-macros = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", default-features = false }
55+
light-compressed-account = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", default-features = false }
56+
light-hasher = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", default-features = false}
5757
# Test dependencies for Compressed Account
58-
light-program-test = { path = "../light-protocol3/sdk-libs/program-test", features = ["v2"] }
59-
light-client = { path = "../light-protocol3/sdk-libs/client", features = ["v2"] }
60-
light-sdk = { path = "../light-protocol3/sdk-libs/sdk", features = ["v2"] }
58+
light-program-test = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", features = ["v2"] }
59+
light-client = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", features = ["v2"] }
60+
light-sdk = { git = "https://github.com/Lightprotocol/light-protocol", rev = "04bccc882f083bd5d428d13dec3dcfba1f88a18f", features = ["v2"] }

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ build-sbf:
5050

5151
# Build Rust workspace and TypeScript clients
5252
build: build-sbf
53-
pnpm -r build
53+
pnpm --filter sas-lib build
5454

5555
# Run all tests (unit + integration)
5656
test: build-sbf

0 commit comments

Comments
 (0)