-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 1.03 KB
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
[package]
name = "solana-explorer-cli"
rust-version = "1.82"
version = "0.3.6"
edition = "2021"
authors = ["Dmitry Shvetsov <shvetsovdm+solana-explorer-cli@gmail.com>"]
license = "MIT"
description = "Solana blockchain CLI state explorere. The best way to explore Solana blockchain state from your terminal."
readme = "README.md"
homepage = "https://github.com/dmshvetsov/solana-explorer-cli"
repository = "https://github.com/dmshvetsov/solana-explorer-cli"
keywords = ["cli", "solana", "state", "explorer"]
categories = ["command-line-utilities"]
[[bin]]
name = "se"
path = "src/main.rs"
[dependencies]
borsh = "=0.10.3"
clap = { version = "4.5.7", features = ["derive"] }
mpl-core = { version = "=0.8.1-beta.1", features = ["serde"] }
mpl-token-metadata = { version = "=5.1.0", features = ["serde"] }
serde = "1.0.203"
serde_json = "1.0.117"
solana-account-decoder-client-types = "~2.1.0"
solana-client = "~2.1.0"
solana-sdk = "~2.1.0"
solana-transaction-status = "~2.1.0"
spl-token = "7.0.0"
uom = { version = "0.36.0", features = ["serde", "usize"] }