-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.76 KB
/
Cargo.toml
File metadata and controls
56 lines (51 loc) · 1.76 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "aqua-cli" #"aqua-verifier-cli"
authors=["dalmasonto<https://github.com/dalmasonto>","Arthur-Kamau<https://github.com/Arthur-Kamau>" ]
version = "1.2.1"
edition = "2021"
license-file = "LICENCE"
description = "Aqua protocol command line tool that enable you to verify, sign and witness aqua chains."
readme = "README.md"
keywords = ["aqua", "aqua-protocol"] # Keywords for crates.io search
categories = ["development-tools", "command-line-utilities"] # Categories on crates.io
repository = "https://github.com/inblockio/aqua-cli-rs" # Source repository
homepage = "https://github.com/inblockio/aqua-cli-rs" # Project homepage
documentation = "https://docs.rs/aqua-cli" # Documentation URL
exclude = ["target", "*.lock", ".vscode", ".idea"] # Files or directories to exclude from the package
[dependencies]
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
warp = "0.3"
hyper = "0.14"
futures = "0.3"
sha3 = "0.10.8"
serde = "1.0.210"
serde_json_path_to_error = "0.1.4"
serde_json = "1.0"
aqua-verifier="1.2.0"
aqua-verifier-rs-types = "1.2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
console = "0.15"
base64 = "0.22.1"
actix-web = "4.4"
actix-files = "0.6"
webbrowser = "0.8"
once_cell = "1.8"
env_logger = "0.10"
actix-cors = "0.6"
dotenv = "0.15"
rand = "0.8.5"
eth-keystore = "0.5"
secp256k1 = { version = "0.27", features = ["rand"] }
tiny-keccak = { version = "2.0", features = ["keccak"] }
hex = "0.4"
ethers = "2.0.14"
eyre = "0.6"
bip32 = "0.5"
k256 = { version = "0.13", features = ["ecdsa"] }
tempfile = "3.3"
# Specify the binary target
[[bin]]
name = "aqua-cli" # This will be the command-line executable name
path = "src/main.rs"