Skip to content

Commit 76a93e3

Browse files
committed
test: add compressed token in batched tree test
1 parent d635258 commit 76a93e3

6 files changed

Lines changed: 819 additions & 181 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ log = "0.4.17"
5959
once_cell = "1.19.0"
6060
rstest = "0.18.2"
6161
sea-orm = { version = "0.10.6", features = [
62-
"macros",
63-
"runtime-tokio-rustls",
64-
"sqlx-postgres",
65-
"sqlx-sqlite",
66-
"with-chrono",
67-
"mock",
62+
"macros",
63+
"runtime-tokio-rustls",
64+
"sqlx-postgres",
65+
"sqlx-sqlite",
66+
"with-chrono",
67+
"mock",
6868
] }
6969
bytes = "1.7.1"
7070
sea-orm-migration = { version = "0.10.6", features = [
71-
"runtime-tokio-rustls",
72-
"sqlx-postgres",
71+
"runtime-tokio-rustls",
72+
"sqlx-postgres",
7373
] }
7474
serde = { version = "1.0.217", features = ["derive"] }
7575
serde_json = "1.0.82"
@@ -79,21 +79,27 @@ solana-program = "1.18.0"
7979
solana-sdk = "1.18.0"
8080
solana-transaction-status = "1.18.0"
8181

82-
light-merkle-tree-metadata = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
83-
light-concurrent-merkle-tree = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
84-
light-sdk = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
85-
light-compressed-account = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
86-
light-batched-merkle-tree = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
87-
light-prover-client = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
82+
light-merkle-tree-metadata = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [
83+
] }
84+
light-concurrent-merkle-tree = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [
85+
] }
86+
light-sdk = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [
87+
] }
88+
light-compressed-account = { path = "../light-protocol/program-libs/compressed-account" }
89+
# git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [] }
90+
91+
light-batched-merkle-tree = { path = "../light-protocol/program-libs/batched-merkle-tree" } #git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [
92+
light-prover-client = { git = "https://github.com/Lightprotocol/light-protocol", branch = "sergey/forester-photon-v2", features = [
93+
] }
8894

8995
sqlx = { version = "0.6.2", features = [
90-
"macros",
91-
"runtime-tokio-rustls",
92-
"postgres",
93-
"sqlite",
94-
"uuid",
95-
"offline",
96-
"json",
96+
"macros",
97+
"runtime-tokio-rustls",
98+
"postgres",
99+
"sqlite",
100+
"uuid",
101+
"offline",
102+
"json",
97103
] }
98104
thiserror = "1.0.31"
99105
# time pinned because of https://github.com/launchbadge/sqlx/issues/3189
@@ -109,11 +115,15 @@ tower = { version = "0.4.13", features = ["full"] }
109115
tower-http = { version = "0.3.5", features = ["full"] }
110116
tracing = "0.1.35"
111117
tracing-subscriber = { version = "0.3.16", features = [
112-
"json",
113-
"env-filter",
114-
"ansi",
118+
"json",
119+
"env-filter",
120+
"ansi",
121+
] }
122+
utoipa = { version = "4.2.0", features = [
123+
"yaml",
124+
"chrono",
125+
"non_strict_integers",
115126
] }
116-
utoipa = { version = "4.2.0", features = ["yaml", "chrono", "non_strict_integers"] }
117127
yellowstone-grpc-client = "1.15.0"
118128
yellowstone-grpc-proto = "1.14.0"
119129
cadence = "1.4.0"

0 commit comments

Comments
 (0)