-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
35 lines (33 loc) · 974 Bytes
/
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
[package]
name = "solana-cli-explorer"
edition = "2021"
version = "0.4.3"
authors = ["Cavey Cool <[email protected]>"]
repository = "https://github.com/cavemanloverboy/sol"
description = "A command line explorer for the Solana Blockchain."
license = "MIT OR Apache-2.0"
keywords = ["cli", "crypto", "blockchain", "utility", "rpc"]
categories = ["command-line-utilities"]
[[bin]]
name = "sol"
path = "src/main.rs"
[dependencies]
base64 = "0.22.0"
bs58 = "0.5.1"
clap = { version = "4.4.7", features = ["derive"] }
colored = "2.0.4"
fd_bs58 = "0.1.0"
futures = "0.3.30"
mpl-token-metadata = "4.1.2"
num-format = "0.4.4"
prettytable-rs = "0.10.0"
solana-account-decoder = "1.18.8"
solana-client = "1.18.8"
solana-sdk = "1.18.8"
solana-transaction-status = "1.18.8"
spl-token = "4.0.0"
spl-token-2022 = "2.0.0"
spl-token-metadata-interface = "0.2.0"
spl-type-length-value = "0.3.1"
terminal_size = "0.3.0"
tokio = { version = "1.33.0", features = ["time", "rt", "macros"] }