-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.1 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
32
33
34
35
36
37
38
39
40
[package]
name = "solana-trading-sdk"
version = "1.0.5"
edition = "2021"
authors = ["vFight <vfight@hotmail.com>"]
repository = "https://github.com/LulzFi/solana-trading-sdk"
description = "A Rust SDK for trading on Solana"
license = "MIT"
keywords = ["solana", "memecoins", "pumpfun", "trading", "sdk"]
readme = "README.md"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
solana-sdk = "2.3.0"
solana-client = "2.3.0"
solana-program = "2.3.0"
solana-rpc-client = "2.3.0"
solana-transaction-status = "2.3.0"
solana-account-decoder = "2.3.0"
spl-token = "8.0.0"
spl-token-2022 = { version = "9.0.0", features = ["no-entrypoint"] }
spl-associated-token-account = "7.0.0"
mpl-token-metadata = "5.1.0"
borsh = { version = "1.5.3", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.134"
futures = "0.3.31"
rand = "0.9.0"
bincode = "1.3.3"
anyhow = "1.0.90"
reqwest = { version = "0.12.12", features = ["json", "multipart", "rustls-tls"] }
tokio = { version = "1.42.0", features = ["full", "rt-multi-thread"] }
async-trait = "0.1.86"
once_cell = "1.20.3"
base64 = "0.22.1"