-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create centralized config and transaction importer.
- Loading branch information
1 parent
f83c63b
commit 741fbe2
Showing
7 changed files
with
401 additions
and
51 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
ecosystem/indexer-grpc/indexer-transaction-generator/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[package] | ||
name = "aptos-indexer-transaction-generator" | ||
description = "Indexer integration testing framework." | ||
version = "1.0.0" | ||
|
||
# Workspace inherited keys | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
publish = { workspace = true } | ||
repository = { workspace = true } | ||
rust-version = { workspace = true } | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
# used for localnode. | ||
# aptos = { workspace = true } | ||
# aptos-config = { workspace = true } | ||
aptos-indexer-grpc-utils = { workspace = true } | ||
aptos-protos ={ workspace = true } | ||
clap = { workspace = true } | ||
futures = { workspace = true } | ||
# rand = { workspace = true } | ||
# regex = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
serde_yaml = { workspace = true } | ||
tokio = { workspace = true } | ||
# toml = { workspace = true } | ||
tonic = { workspace = true } | ||
url = { workspace = true } | ||
|
||
[dev-dependencies] | ||
itertools = { workspace = true } | ||
tempfile = { workspace = true } | ||
tokio-stream = { workspace = true } |
Oops, something went wrong.