-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.08 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
[package]
name = "diffusion-bot-rust"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "diffusion-bot-rust"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.89"
base64 = "0.22.1"
dotenv = "0.15.0"
env_logger = "0.11.8"
futures = "0.3.31"
futures-util = "0.3.31"
image = { version="0.25.9", features = ["png", "jpeg", "webp"] }
log = "0.4.29"
once_cell = "1.21.3"
rand = "0.9.2"
regex = "1.12.2"
reqwest = { version="0.12", features = ["json", "multipart"] }
reqwest-eventsource = "0.6.0"
serde = "1.0.228"
serde_json = "1.0.149"
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
tokio-stream = "0.1.18"
twilight-cache-inmemory = "0.17.1"
twilight-gateway = "0.17.1"
twilight-http = "0.17.1"
twilight-interactions = "0.17.0"
twilight-model = "0.17.1"
twilight-util = { version = "0.17.0", features = ["builder"] }
twilight-validate = "0.17.0"
solana-sdk = "3"
solana-client = "3"
spl-token = "9"
spl-associated-token-account = "8"
sha2 = "0.10.9"
hex = "0.4.3"
anyhow = "1.0.101"