-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (34 loc) · 986 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
[package]
name = "chrysanthemum"
version = "0.4.3"
edition = "2018"
[dependencies]
regex = "1.5.5"
dotenv = "0.15.0"
tokio = { version = "1.17.0", features = ["full"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = "0.9.17"
serde_regex = "1.1.0"
once_cell = "1.10.0"
chrono = "0.4.19"
reqwest = "0.11"
futures = "0.3.17"
influxdb = { version = "0.5.0", features = ["derive"] }
sentry = { version = "0.29.2", features = ["tracing", "backtrace" ]}
sentry-tracing = "0.29.2"
tracing-log = "0.1.2"
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.1", features = ["env-filter", "json", "registry"] }
eyre = "0.6.5"
color-eyre = "0.6.2"
thiserror = "1.0.30"
twilight-gateway = "0.14.0"
twilight-http = "0.14.0"
twilight-model = "0.14.0"
twilight-cache-inmemory = "0.14.0"
twilight-mention = "0.14.0"
twilight-util = { version = "0.14.0", features = ["builder"] }
[profile.dev.package.backtrace]
opt-level = 3
[dev-dependencies]
pretty_assertions = "1.2.0"