-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 786 Bytes
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
[package]
name = "aptos-utils"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aptos-sdk = { git = "https://github.com/aptos-labs/aptos-core", branch = "mainnet" }
url = "2.3.1"
tokio = { version = "1.21.2", features = ["full"] }
rand_core = "0.5.1"
rand = "0.7.3"
hex = "0.4.3"
ed25519-dalek = "1.0.1"
once_cell = "1.15.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4.22"
clap = { version = "4.0.18", features = ["derive"] }
anyhow = "1.0.57"
tracing-subscriber = {version = "0.3.3", features = ["env-filter"]}
crossterm = "0.23.1"
tracing = "0.1.34"
tracing-appender = "0.2.0"
dotenv = "0.15.0"
futures = "0.3.25"
rusqlite = "0.28.0"