-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (38 loc) · 903 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
[workspace]
members = ["schnosebot", "discord_bot", "twitch_bot", "schnose_gsi_client"]
[workspace.dependencies]
# error handling
color-eyre = "0.6"
# logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"json",
"time",
] }
tracing-appender = "0.2"
# CLI
clap = { version = "4", features = ["derive"] }
# parsing
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.5"
# async
tokio = { version = "1", features = ["full"] }
futures = "0.3"
# GOKZ
gokz_rs = { version = "0.18", features = [
# gokz_rs = { git = "https://github.com/AlphaKeks/gokz.rs", features = [
"global_api",
"kzgo_api",
"schnose_api",
] }
# SQL
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "mysql"] }
# util
chrono = "0.4"
time = { version = "0.3", features = ["macros"] }
rand = "0.8"
regex = "1.7"
num-format = "0.4"
fuzzy-matcher = "0.3"