-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (45 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
47 lines (45 loc) · 1.48 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
41
42
43
44
45
46
47
[package]
name = "temp"
version = "0.1.0"
edition = "2021"
[dependencies]
dotenv = "0.15"
chrono = "0.4.38"
tokio = { version = "1.38.0", features = ["full"] }
solana-sdk = "1.16.27"
solana-client = "1.16.27"
solana-account-decoder = "1.17.0"
solana-transaction-status = "1.16.27"
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.9.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "2.2.0", features = [
"no-entrypoint",
] }
spl-token-client = "=0.7.1"
common = { git = "https://github.com/raydium-io/raydium-library" }
amm-cli = { git = "https://github.com/raydium-io/raydium-library" }
anyhow = "1.0.53"
serde = "1.0.203"
serde_json = "1.0.117"
clap = { version = "4.5.7", features = ["derive"] }
raydium_amm = { git = "https://github.com/raydium-io/raydium-amm", default-features = false, features = [
"client",
] }
jito-json-rpc-client = { git = "https://github.com/jito-labs/json-rpc-client", package = "jito-block-engine-json-rpc-client"}
anchor-lang = "0.29.0"
bytemuck = "1.21.0"
indicatif = "0.17.8"
rand = "0.8.5"
tracing = "0.1.40"
futures-util = "0.3.30"
tokio-tungstenite = "0.22.0"
tokio-stream = "0.1.10"
borsh = { version = "1.5.3" }
borsh-derive = "1.5.3"
solana-transaction-status-client-types = "=2.1.0"
url = "2.3.1"
base64 = "0.13"
bincode = "1.3.3"
reqwest = { version = "0.11", features = ["json"] }
[patch.crates-io]
solana-frozen-abi = { git = "https://github.com/solana-labs/solana", branch = "v1.16" }