-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
63 lines (55 loc) · 1.17 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
[package]
name = "lotr-mod-discord-bot"
version = "0.1.0"
authors = ["AldanTanneo <aldantanneo@gmail.com>"]
edition = "2021"
[profile.release]
lto = true
[dependencies]
bytesize = "1"
itertools = "0.14"
serde_json = "1.0"
serde = "1.0"
chrono = "0.4"
humantime-serde = "1.1"
dashmap = "6"
alea = "0.2"
serde_tuple = "1.1"
const_format = "0.2"
urlencoding = "2.1"
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["rustls-tls"]
[dependencies.iso-8601]
git = "https://github.com/AldanTanneo/iso-8601"
features = ["chrono"]
[dependencies.mysql_async]
version = "0.35"
default-features = false
features = ["default-rustls"]
[dependencies.mysql_common]
version = "0.34"
default-features = false
features = ["chrono"]
[dependencies.tokio]
version = "1"
features = ["macros", "rt-multi-thread", "signal"]
[dependencies.serenity]
version = "0.11"
default-features = false
features = [
"chrono",
"builder",
"client",
"framework",
"gateway",
"http",
"model",
"standard_framework",
"utils",
"rustls_backend",
"cache",
"unstable_discord_api",
"collector",
]