forked from TheTerminalCafe/ttc-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 862 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
[package]
name = "ttc-bot"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.3"
tokio = { version = "1.14", features = ["macros", "rt-multi-thread"] }
regex = "1.5.6"
sqlx = { version = "0.5.9", features = [
"runtime-tokio-rustls",
"postgres",
"chrono",
"macros",
"offline",
] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1.0"
chrono = "0.4"
dotenv = "0.15"
rand = "0.8.4"
env_logger = "0.9.0"
log = { version = "0.4.14", features = ["std"] }
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
signal-hook = "0.3"
futures = "0.3"
humantime = "2.1.0"
reqwest = "0.11"
poise = "0.2.1"
lazy_static = "1.4.0"
strsim = "0.10.0"
[profile.release]
lto = "fat"
codegen-units = 1