-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (47 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
55 lines (47 loc) · 1.23 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
48
49
50
51
52
53
54
55
[package]
name = "solana bubblemaps bypassing tool"
version = "0.1.0"
edition = "2021"
[dependencies]
# solana
solana-sdk = "2.2.2"
solana-client = "2.2.19"
spl-token = { version = "7.0.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "7.0.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "7.0.0", features = [
"no-entrypoint",
] }
spl-token-client = "0.16.0"
solana-program = "2.2.0"
# async
tokio = { version = "1.21.2", features = ["full"] }
tokio-tungstenite = { version = "0.23.1", features = ["native-tls"] }
tokio-stream = "0.1.11"
tokio-js-set-interval = "1.3.0"
async-nats = "0.38.0"
futures-util = "0.3.30"
futures = "0.3"
# serialization
serde = "1.0.145"
serde_json = "1.0.86"
borsh = { version = "1.5.3" }
borsh-derive = "1.5.3"
bincode = "1.3.3"
bytemuck = "1.21.0"
# networking & http
reqwest = { version = "0.11.27", features = ["json", "socks", "native-tls"] }
url = "2.3.1"
# encoding
base64 = "0.21.0"
bs64 = "0.1.2"
bs58 = "0.4"
# utilities
anyhow = "1.0.62"
clap = { version = "4.5.7", features = ["derive"] }
indicatif = "0.17.8"
rand = "0.8.5"
colored = "3.0.0"
maplit = "1.0.2"
lazy_static = "1.5.0"
dotenvy = "0.15"
time = { version = "0.3", features = ["formatting", "macros"] }