Files
solana-streamer/Cargo.toml
T

51 lines
1.4 KiB
TOML
Raw Normal View History

2025-01-23 17:48:10 +08:00
[package]
name = "mai3-pumpfun-sdk"
version = "2.4.5"
edition = "2021"
authors = ["William <william@mai3.io>"]
repository = "https://github.com/MiracleAI-Labs/pumpfun-sdk"
description = "Rust SDK to interact with the Pump.fun Solana program."
license = "MIT"
keywords = ["solana", "memecoins", "pumpfun", "pumpfun-sdk"]
readme = "README.md"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
2025-02-13 20:44:20 +08:00
solana-sdk = "2.1.13"
solana-client = "2.1.13"
solana-transaction-status = "2.1.13"
solana-rpc-client = "2.1.13"
solana-rpc-client-api = "2.1.13"
solana-program = "2.1.13"
2025-01-23 17:48:10 +08:00
spl-token = "7.0.0"
spl-associated-token-account = "6.0.0"
2025-01-24 14:01:56 +08:00
mpl-token-metadata = "5.1.0"
2025-01-23 17:48:10 +08:00
borsh = { version = "1.5.3", features = ["derive"] }
isahc = "1.7.2"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.134"
futures = "0.3.31"
futures-util = "0.3.31"
base64 = "0.22.1"
bs58 = "0.5.1"
2025-02-12 20:12:14 +08:00
rand = "0.9.0"
2025-01-23 17:48:10 +08:00
bincode = "1.3.3"
anyhow = "1.0.90"
2025-02-13 20:44:20 +08:00
reqwest = { version = "0.12.12", features = ["json"] }
2025-01-23 17:48:10 +08:00
tonic = { version = "0.12.3", features = ["tls", "tls-webpki-roots", "tls-roots"] }
tokio = { version = "1.42.0" , features = ["full", "rt-multi-thread"]}
2025-02-13 20:44:20 +08:00
yellowstone-grpc-client = { version = "5.0.0" }
yellowstone-grpc-proto = { version = "5.0.0" }
2025-01-23 17:48:10 +08:00
rustls = { version = "0.23.20", features = ["ring"] }
dotenvy = "0.15.7"
pretty_env_logger = "0.5.0"
log = "0.4.22"
chrono = "0.4.39"
regex = "1"
2025-02-12 20:12:14 +08:00
tracing = "0.1.41"
2025-02-13 20:44:20 +08:00
thiserror = "2.0.11"
async-trait = "0.1.86"
2025-01-23 17:48:10 +08:00