-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
60 lines (54 loc) · 1.04 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
[package]
name = "kaisantantoudaijin"
version = "0.1.0"
authors = ["coord_e <[email protected]>"]
edition = "2021"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
chrono-tz = "0.9"
clap = { version = "4", features = ["derive", "env"] }
deadpool-redis = "0.15.1"
futures = "0.3"
peg = "0.8"
rand = { version = "0.8", features = ["small_rng"] }
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dependencies.chrono]
version = "0.4"
default-features = false
features = [
"clock",
"std",
]
[dependencies.redis]
version = "0.25"
default-features = false
features = [
"aio",
"tokio-comp",
]
[dependencies.serenity]
version = "0.12"
default-features = false
features = [
"cache",
"client",
"gateway",
"model",
"rustls_backend",
]
[dependencies.tokio]
version = "1"
default-features = false
features = [
"fs",
"macros",
"rt-multi-thread",
"time",
]
[dev-dependencies]
once_cell = "1"
tokio = { version = "1", features = ["sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }