-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 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
[package]
name = "pacbot"
version = "0.1.0"
edition = "2021"
authores = ["Wizard28 <[email protected]>", "Elsie19 <[email protected]>"]
description = "Pacstall's Discord server and GitHub bot"
license = "AGPL-3.0-or-later"
repository = "https://github.com/pacstall/pacbot"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.12.0", features = ["json", "rustls-tls"] }
poise = "0.5.5"
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
serde = "1.0.188"
serde_json = "1.0.107"
dotenvy = "0.15.7"
sysinfo = "0.29.5"
human_bytes = "0.4.2"
compound_duration = "1.2.1"
jwt-simple = "0.11.6"
rand = "0.8.5"
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
built = { version = "0.6.1", features = ["chrono"] }
[profile.release]
lto = true
strip = true
panic = "abort"
[build-dependencies]
built = { version = "0.6.1", features = ["git2", "chrono"] }