-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 719 Bytes
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
[package]
name = "statusbot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = { version = "0.14.27", features = ["full"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.107" }
time = { version = "0.3.29", features = [
"serde",
"serde-well-known",
"formatting",
"macros",
] }
tokio = { version = "1.32.0", features = ["full"] }
log = { version = "0.4" }
pretty_env_logger = { version = "0.4" }
dotenv = "0.15.0"
hyper-tls = "0.5.0"
url = "2.4.1"
regex = "1.10.2"
emojic = "0.4.1"
once_cell = "1.18.0"
data-encoding = "2.4.0"
[dev-dependencies]
test-case = "3.2.1"