-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
34 lines (32 loc) · 907 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
[package]
name = "craiyon-bot"
version = "1.0.0"
edition = "2021"
[lints.clippy]
pedantic = "warn"
nursery = "warn"
[dependencies]
async-signal = "0.2"
async-trait = "0.1"
base64 = "0.22"
bytes = "1.8"
charname = "1.15"
colored = "2.0"
counter = "0.6"
dotenvy = "0.15"
futures-util = "0.3"
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "webp"] }
log = { version = "0.4", features = ["std"] }
markov-chain = { git = "https://github.com/jelni/markov-chain" }
md5 = "0.7"
oneshot = "0.1"
rand = "0.8"
reqwest = { version = "0.12", features = ["json", "stream"] }
rmp-serde = "1.1"
serde = "1.0"
serde_json = "1.0"
tdlib = { git = "https://github.com/jelni/tdlib-rs-latest" }
tempfile = "3.13"
time = { version = "0.3", features = ["macros", "serde", "serde-well-known"] }
tokio = { version = "1.41", features = ["macros", "rt-multi-thread", "signal", "time"] }
url = "2.5"