Cargo.toml 944 B raw
1
[package]
2
name = "walletfetch"
3
description = "Like Neofetch, but for your wallet"
4
homepage = "https://github.com/stevedylandev/walletfetch"
5
repository = "https://github.com/stevedylandev/walletfetch"
6
readme = "README.md"
7
version = "0.0.8"
8
edition = "2024"
9
license = "MIT"
10
11
[dependencies]
12
clap = { version = "4.4", features = ["derive"] }
13
reqwest = { version = "0.11", features = ["blocking", "json"]}
14
serde = { version = "1.0", features = ["derive"]}
15
serde_json = "1.0"
16
tokio = { version = "1.0", features = ["full"]}
17
futures = "0.3"
18
toml = "0.8"
19
dirs = "5.0"
20
indicatif = "0.17"
21
colored = "2.0"
22
tiny-keccak = { version = "2.0.2", features = ["keccak"]}
23
unicode-normalization = "0.1.24"
24
hex = "0.4.3"
25
26
# Alloy dependencies
27
alloy = { version = "0.1", features = ["provider-http"] }
28
alloy-ccip-read = "0.1.0"
29
30
# The profile that 'dist' will build with
31
[profile.dist]
32
inherits = "release"
33
lto = "thin"
34
35
[workspace.metadata.dist]
36
allow-dirty = true