-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (41 loc) · 1.37 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
38
39
40
41
42
43
44
[package]
name = "ceo"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "ceo"
src = "src/main.rs"
[profile.release]
# Optimize for size
opt-level = 'z'
# LTO instructs the linker to optimize at the link stage. This can, for example, remove dead code and often times reduces binary size
lto = true
# By default, Cargo specifies 16 parallel codegen units for release builds. This improves compile times, but prevents some optimizations.
codegen-units = 1
# Automatically strip symbols from the binary.
# strip = true
[dependencies]
bytes = "1.9.0"
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive"] }
figment = { version = "0.10.19", features = ["env", "yaml"] }
futures = "0.3.31"
http = "1.2.0"
itertools = "0.14.0"
minijinja = "2.5.0"
once_cell = "1.20.2"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["stream", "rustls-tls"] }
rustls = "0.23.20"
scraper = "0.22.0"
serde = { version = "1.0.217", features = ["serde_derive"] }
serde_json = "1.0.135"
slack-morphism = { version = "2.8.0", features = ["hyper"] }
strum = { version = "0.26.3", features = ["derive"] }
text-to-ascii-art = "0.1.10"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tokio-cron-scheduler = "0.13.0"
tokio-util = { version = "0.7.13", features = ["io"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
uuid = "1.11.0"