-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
23 lines (22 loc) · 1005 Bytes
/
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
[package]
name = "gas-lookup"
version = "0.1.4"
edition = "2021"
authors = ["doshivarun202@gmail.com"]
license = "MIT OR Apache-2.0"
description = "A tool to calculate total gas spent by an address within a given time frame"
readme = "README.md"
homepage = "https://github.com/varun-doshi/gas-lookup"
repository = "https://github.com/varun-doshi/gas-lookup"
keywords = ["cli", "gas", "ethereum","web3"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0", features = ["derive"] }
tokio = { version = "1.15", features = ["full"] }
ethers={version ="2.0.11",features = ["abigen","rustls","etherscan"], default-features = false}
web3_dater = "0.1.1"
chrono = "0.4.22"
web3 = {version="0.18.0",default-features = false,features = ["_http_base","async-native-tls","base64","bytes","headers","http","http-tls","ipc-tokio","once_cell","secp256k1"]}
colored = "2.0.4"
dotenv = "0.15.0"