-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
36 lines (33 loc) · 1.12 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
34
35
36
[package]
name = "lazy-etherscan"
version = "1.0.0"
edition = "2021"
authors = ["woxjro <usuzawa.yoshi.55z@st.kyoto-u.ac.jp>"]
license = "MIT"
description = "Simple Terminal UI for the Ethereum Blockchain Explorer"
readme = "README.md"
homepage = "https://github.com/woxjro/lazy-etherscan"
repository = "https://github.com/woxjro/lazy-etherscan"
keywords = ["ethereum", "blockchain", "tui", "etherscan", "ratatui"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfonts = "1.1.0"
chrono = "0.4.26"
ethers = "2.0.11"
futures = "0.3.28"
ratatui = { version = "0.22.0", features = ["all-widgets"] }
serde_json = "1.0.104"
tokio = { version = "1.29.1", features = ["full"] }
clap = { version = "4.5.3", features = ["derive"] }
log = "0.4.20"
simplelog = "0.12.1"
serde = "1.0.189"
url = "2.4.1"
tempfile = "3.9.0"
anyhow = "1.0.79"
beacon-api-client = { path = "ethereum-consensus/beacon-api-client" }
ethereum-consensus = { path = "ethereum-consensus/ethereum-consensus" }
[dependencies.crossterm]
version = "0.26.1"
features = ["event-stream"]