-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 930 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
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "rusty_bot"
version = "0.1.0"
authors = ["Will Fombin <[email protected]>"]
edition = "2021"
[dependencies]
rusty_bot_macros = { path = "rusty_bot_macros" }
anyhow = "1.0"
async-trait = "0.1.50"
dotenv = "0.15"
futures = "0.3"
itertools = "0.10.0"
linked_hash_set = "0.1.4"
nanoid = "0.4.0"
sys-info = "0.7"
rand = "0.8.3"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.mongodb]
version = "2.0.0"
default-features = false
features = ["bson-chrono-0_4", "tokio-runtime"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serenity]
version = "0.12"
default-features = false
features = [
"cache",
"chrono",
"client",
"gateway",
"rustls_backend",
"model",
]
[dependencies.tokio]
version = "1.21.2"
features = ["macros", "signal", "rt-multi-thread", "time"]
[profile.release]
lto = true