-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1000 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
[package]
name = "automan"
version = "0.1.0"
authors = ["Yarot Kell <yarotkel@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "monitor"
path = "app/monitor/main.rs"
[lib]
name = "automan"
path = "lib/automan/automan.rs"
[dependencies]
anyhow = "1.0.44"
tokio = { version = "1.12.0", features = ["full"] }
serde_derive = "1.0.130"
serde = "1.0.130"
toml = "0.5.8"
lazy_static = "1.4.0"
log = "0.4.14"
fern = "0.6.0"
chrono = "0.4.19"
rillrate = "0.41.0"
ulid = { version = "0.5.0", features = ["serde"] }
rand = { version = "0.8.4", features = ["getrandom", "small_rng", "std_rng"] }
giphy = "0.4.1"
reqwest = "0.11.6"
serde_json = "1.0.73"
[dependencies.serenity]
default-features = false
features = [
"builder",
"cache",
"client",
"collector",
"framework",
"gateway",
"http",
"model",
"standard_framework",
"utils",
"voice",
"rustls_backend",
]
version = "0.10.9"