-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 893 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
[package]
name = "sparkyscrape"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
axum = { version = "0.7.2", features = ["multipart"] }
byteorder = "1.5.0"
bytes = "1.5.0"
clap = { version = "4.4.11", features = ["derive"] }
colored = "2.1.0"
http = "0.2.11"
image = "0.24.7"
lazy_static = "1.4.0"
rayon = "1.8.0"
regex = "1.10.2"
reqwest = "0.11.22"
rustdct = "0.7.1"
serde = "1.0.193"
serde_json = "1.0.108"
serenity = { git = "https://github.com/nshout/serenity-self.git", features = ["client", "gateway", "rustls_backend", "model", "unstable_discord_api", "cache"] }
socketioxide = "0.9.0"
tokio = { version = "1.35.0", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = "0.20.1"
tower = "0.4.13"
tower-http = { version = "0.5.0", features = ["cors", "fs"] }