Skip to content

Instantly share code, notes, and snippets.

@aliX40
Created March 29, 2025 18:55
Show Gist options
  • Select an option

  • Save aliX40/6d9ffd6e8ff32c7c65e94ba424290912 to your computer and use it in GitHub Desktop.

Select an option

Save aliX40/6d9ffd6e8ff32c7c65e94ba424290912 to your computer and use it in GitHub Desktop.
Cargo #5
[package]
name = "transaction-tester"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core dependencies
anyhow = "1.0"
tokio = { version = "1.35.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bcs = { git = "https://github.com/movementlabsxyz/bcs.git", rev = "bc16d2d39cabafaabd76173dd1b04b2aa170cf0c" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
prost = "0.13.3"
rand = { workspace = true }
rand_core = { workspace = true }
reqwest = { workspace = true }
# Movement dependencies
maptos-dof-execution = { path = "../../../protocol-units/execution/maptos/dof" }
movement-da-light-node-client = { path = "../../../protocol-units/da/movement/protocol/client" }
movement-da-light-node-proto = { path = "../../../protocol-units/da/movement/protocol/proto" }
movement-da-util = { path = "../../../protocol-units/da/movement/protocol/util" }
movement-types = { path = "../../../util/movement-types" }
aptos-crypto = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "109737d10424a7e0f04fbda329058cc581334faf", features = ["cloneable-private-keys"] }
aptos-types = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "109737d10424a7e0f04fbda329058cc581334faf" }
aptos-sdk = { git = "https://github.com/movementlabsxyz/aptos-core", rev = "109737d10424a7e0f04fbda329058cc581334faf" }
[dev-dependencies]
once_cell = { workspace = true }
rand = { workspace = true }
tokio = { workspace = true }
url = { workspace = true }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment