-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
64 lines (55 loc) · 1.36 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "torimies-rs"
version = "0.2.0"
edition = "2021"
authors = ["Luukas Pörtfors <[email protected]>"]
[features]
default = ["discord", "telegram", "tori", "huutonet"]
discord = ["discord-delivery", "discord-command"]
telegram = ["telegram-delivery", "telegram-command"]
discord-delivery = []
discord-command = []
telegram-delivery = []
telegram-command = []
tori = []
huutonet = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.serenity]
version = "0.12"
default-features = false
features = ["client", "gateway", "rustls_backend", "model"]
[dependencies.tokio]
version = "1.13"
features = ["macros", "rt-multi-thread", "signal"]
[dependencies.diesel]
version = "1.4.8"
features = ["sqlite", "r2d2"]
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dependencies.libsqlite3-sys]
version = "0.22.2"
features = ["bundled"]
[dependencies.teloxide]
version = "0.12.2"
features = ["rustls", "throttle", "macros"]
[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = "0.11"
regex = "1.5"
dotenv = "0.15"
futures = "0.3"
chrono = "0.4"
clokwerk = "0.3"
serde_json = "1.0"
serde = "1.0.166"
lazy_static = "1.4"
async-trait = "0.1"
thiserror = "1"
dashmap = "5.4.0"
itertools = "0.10.5"
r2d2 = "0.8.10"
url = "2.4.0"
encoding = "0.2.33"
hex = "0.4.3"