Skip to content

Commit

Permalink
add sdk test
Browse files Browse the repository at this point in the history
  • Loading branch information
yuunlimm committed Oct 11, 2024
1 parent 4cc90a3 commit 90c4b93
Show file tree
Hide file tree
Showing 16 changed files with 873 additions and 25 deletions.
143 changes: 123 additions & 20 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ testing-transactions = { path = "testing-transactions" }

ahash = { version = "0.8.7", features = ["serde"] }
anyhow = "1.0.86"
aptos-indexer-processor-sdk = { git = "https://github.com/aptos-labs/aptos-indexer-processor-sdk.git", rev = "95d76e07dd66a20a0e50a9e6c559885bff7ab52b" }
aptos-indexer-processor-sdk-server-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processor-sdk.git", rev = "95d76e07dd66a20a0e50a9e6c559885bff7ab52b" }
aptos-indexer-processor-sdk = { git = "https://github.com/aptos-labs/aptos-indexer-processor-sdk.git", rev = "caf12730f25be21c633d080d55fb3578f909a870" }
aptos-indexer-processor-sdk-server-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processor-sdk.git", rev = "ca658a0881c4bff4e1dee14c59a7c63608a5b315" }
aptos-protos = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "5c48aee129b5a141be2792ffa3d9bd0a1a61c9cb" }
aptos-system-utils = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "202bdccff2b2d333a385ae86a4fcf23e89da9f62" }
aptos-indexer-test-transactions = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "7246f0536d599789d7dd5e9fb776554abbe11eac" }
aptos-indexer-test-transactions = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "c583502c69529fddbbf7e47bf920f1dc60e71b72" }
testing-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processor-sdk.git", rev = "caf12730f25be21c633d080d55fb3578f909a870" }

async-trait = "0.1.53"
backtrace = "0.3.58"
base64 = "0.13.0"
Expand Down
19 changes: 19 additions & 0 deletions rust/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,23 @@ serde_json = { workspace = true }
testcontainers = { workspace = true }
testing-transactions = { workspace = true }
tokio = { workspace = true }
futures = { workspace = true }
tonic = { workspace = true }
tempfile = { workspace = true }
sdk-processor = { workspace = true }
aptos-indexer-processor-sdk = { workspace = true }
testing-framework = { workspace = true }
ahash = { workspace = true }
url = { workspace = true }
clap = { workspace = true }
ctor = { workspace = true }
once_cell = { workspace = true }

[dev-dependencies]
futures = { workspace = true }
tonic = { workspace = true }
tempfile = { workspace = true }
sdk-processor = { workspace = true }
aptos-indexer-processor-sdk = { workspace = true }
ahash = { workspace = true }
url = { workspace = true }
Loading

0 comments on commit 90c4b93

Please sign in to comment.