solana_scanner/Cargo.toml

33 lines
804 B
TOML
Raw Permalink Normal View History

2025-03-27 08:17:57 +01:00
[package]
name = "solana_scanner"
version = "0.1.0"
2025-04-03 08:16:44 +02:00
edition = "2024"
2025-03-27 08:17:57 +01:00
[dependencies]
solana-client = "2.2.6"
solana-sdk = "2.2.2"
2025-03-27 08:17:57 +01:00
bs58 = "0.5.0"
2025-04-03 08:16:44 +02:00
solana-commitment-config = "2.2.1"
solana-transaction-status-client-types = "2.2.4"
solana-transaction-status = "2.2.6"
2025-04-03 08:16:44 +02:00
spl-token = "8.0.0"
base64 = "0.22.1"
bincode = "1.3.3"
hex = "0.4"
borsh = "1.5.7"
borsh-derive = "1.5.7"
serde = { version = "1.0.219", features = ["derive"] }
solana-account-decoder = "2.2.6"
chrono = "0.4.40"
anyhow = "1.0"
lazy_static = "1.5.0"
mpl-token-metadata = "5.1.0"
solana-program = "2.2.1"
serde_json = "1.0.140"
log = "0.4.27"
reqwest = { version = "0.12.15", features = ["json"] }
tokio = { version = "1", features = ["full"] }
2025-03-27 08:17:57 +01:00
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"