-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 920 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "morge"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yuliyu123/morge"
description = """
A batch of solidity contracts deployment tool implementation in Rust.
"""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# network & async libs
ethers = { version = "0.13.0", features = ["legacy"] }
tokio = { version = "1.19.2", features = ["full"] }
futures = { version = "0.3.0", features = ["thread-pool"]}
# serilezation && deserilezation
serde_json = "1.0.67"
serde = "1.0.133"
# arg parser
clap = { version = "3.2.4", features = ["derive"] }
clap_complete = "3.0.4"
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
# log
log = "0.4.17"
env_logger = "0.8.4"
log4rs = "1.1.1"
# date and time lib
chrono = "0.4"
# others
once_cell = "1.5.2"
eyre = "0.6"
rand = "0.8.5"
lazy_static = "1.4.0"