Cargo.toml 947 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.11"
8
edition = "2024"
9
license = "MIT"
10
11
[workspace.metadata.dist]
12
allow-dirty = ["ci"]
13
14
[dependencies]
15
clap = { version = "4.4", features = ["derive"] }
16
reqwest = { version = "0.11", features = ["blocking", "json"]}
17
serde = { version = "1.0", features = ["derive"]}
18
serde_json = "1.0"
19
tokio = { version = "1.0", features = ["full"]}
20
futures = "0.3"
21
toml = "0.8"
22
dirs = "5.0"
23
indicatif = "0.17"
24
colored = "2.0"
25
tiny-keccak = { version = "2.0.2", features = ["keccak"]}
26
unicode-normalization = "0.1.24"
27
hex = "0.4.3"
28
29
# Alloy dependencies
30
alloy = { version = "0.1", features = ["provider-http"] }
31
alloy-ccip-read = "0.1.0"
32
33
# The profile that 'dist' will build with
34
[profile.dist]
35
inherits = "release"
36
lto = "thin"