-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (50 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
[package]
name = "zero-two"
version = "0.6.2"
authors = ["Youssef Habri <youssef.habri@gmail.com>"]
edition = "2018"
[profile.dev]
incremental = true
[profile.release]
opt-level = 'z'
lto = true
[workspace]
members = ["z2-anilist", "z2-database", "z2-interactions", "z2-menu"]
[dependencies]
anilist = { path = "./z2-anilist" }
database = { path = "./z2-database", optional = true }
interactions = { path = "./z2-interactions" }
menu = { path = "./z2-menu" }
async-trait = "0.1"
chrono = "0.4"
fern = "0.6"
futures = "0.3"
kankyo = "0.3"
log = "0.4"
once_cell = "1.17"
serde_json = "1.0"
sysinfo = "0.26"
rand = "0.8"
regex = "1.4"
pretty_env_logger = "0.4"
uwuify = "0.2"
[dependencies.reqwest]
version = "0.11"
features = ["blocking", "json"]
[dependencies.serenity]
version = "0.11"
features = ["unstable_discord_api"]
git = "https://github.com/serenity-rs/serenity"
branch = "current"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1.0"
features = ["macros", "signal", "rt-multi-thread"]
[dependencies.urbandictionary]
git = "https://github.com/youssefhabri/urbandictionary.rs"
branch = "async"
[features]
default = []
db = ["database"]