-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (36 loc) · 905 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
[package]
name = "chat_bot"
version = "0.1.0"
authors = ["Aleksei Zolotov <[email protected]>"]
edition = "2021"
[dependencies]
anyhow = { version = "1.0.48", features = ["backtrace"] }
bytes = "1.1.0"
chrono = "0.4.19"
dotenv = "0.15.0"
env_logger = "0.9.0"
feed-rs = "1.0.0"
futures = "0.3.18"
image = "0.23.14"
lazy_static = "1.4.0"
log = "0.4.14"
regex = "1.5.5"
reqwest = { version = "0.11.6", features = [
"gzip",
"brotli",
"multipart",
"json",
] }
rustbreak = { version = "2.0.0", features = ["yaml_enc"] }
serde = { version = "1.0.130", features = ["derive"] }
serenity = { version = "0.10.9", default-features = false, features = [
"client",
"gateway",
"native_tls_backend",
"model",
] }
teloxide = { version = "0.5.3", features = ["auto-send", "macros"] }
tokio = { version = "1.14.0", features = ["full"] }
tokio-stream = "0.1.8"
[build-dependencies]
prost-build = "0.9.0"