-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
46 lines (34 loc) · 866 Bytes
/
Cargo.toml
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
[package]
name = "sniper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv = "0.15.0"
base64 = "0.13.0"
anyhow = "1.0.79"
clap = "4.5.0"
env_logger = "0.11.2"
log = "0.4.20"
chrono = "0.4"
serde_json = "1.0.113"
solana-client = "1.18.2"
solana-sdk = "1.18.2"
solana-transaction-status = "1.18.2"
spl-associated-token-account = "2.3.0"
spl-token = "4.0.0"
spl-token-client = "0.8.0"
tokio = "1.36.0"
tokio-tungstenite = { version = "0.20.1", features = ["native-tls"] }
futures-util = "0.3.29"
bitfield = "0.13.2"
byteorder = "1.4.3"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
bincode = "1.3.3"
anchor-client = "0.26.0"
anchor-lang = "0.26.0"
anchor-spl = "0.26.0"
mini-redis = "0.4"
anchor-gen = "0.3.1"
futures = "0.3"