-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 990 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
[package]
name = "idea-reaction"
version = "0.6.3"
edition = "2021"
description = "アイデア投稿履歴のリアクションをサポートするDiscord Bot"
authors = ["GiganticMinecraft"]
license = "MIT"
repository = "https://github.com/GiganticMinecraft/idea-reaction"
[dependencies]
anyhow = { version = "1.0.94" }
dotenvy = { version = "0.15.7" }
tracing = { version = "0.1.41" }
envy = { version = "0.4.2" }
typed-builder = { version = "0.20.0" }
regex = { version = "1.11.1" }
sentry = { version = "0.36.0" }
thiserror = { version = "2.0.7" }
[dependencies.serenity]
version = "0.12.4"
features = ["client", "gateway", "model", "cache", "rustls_backend"]
default-features = false
[dependencies.serde]
version = "1.0.216"
features = ["derive"]
[dependencies.tokio]
version = "1.42.0"
features = ["macros", "rt-multi-thread"]
[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["json", "env-filter"]
[dependencies.reqwest]
version = "0.12.9"
features = ["json"]