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