-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (26 loc) · 1.74 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "txn-submit-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.75.0"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aptos-experimental-bulk-txn-submit = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
# branch = "igor/bulk_txn_submit_script"
aptos-config = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
aptos-crypto = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
aptos-logger = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
aptos-sdk = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
aptos-transaction-emitter-lib = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
aptos-transaction-generator-lib = { git = "https://github.com/aptos-labs/aptos-core", rev = "296ba2d815cbcca7f8207429238d045f4fecf366" }
clap = { version = "4.3.9", features = ["derive", "env", "unstable-styles"] }
tokio = { version = "1.35.1", features = ["full"] }
anyhow = "1.0.71"
bcs = { git = "https://github.com/aptos-labs/bcs.git", rev = "d31fab9d81748e2594be5cd5cdf845786a30562d" }
rand = "0.7.3"
serde = { version = "1.0.193", features = ["derive", "rc"] }
[patch.crates-io]
serde-reflection = { git = "https://github.com/aptos-labs/serde-reflection", rev = "73b6bbf748334b71ff6d7d09d06a29e3062ca075" }
merlin = { git = "https://github.com/aptos-labs/merlin" }
x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", branch = "zeroize_v1" }