euler/Cargo.toml

26 lines
512 B
TOML
Raw Permalink Normal View History

2024-10-09 17:10:08 +00:00
[package]
name = "euler"
version = "1.0.0"
2024-10-09 17:10:08 +00:00
edition = "2021"
default-run = "euler"
2024-10-09 17:10:08 +00:00
[dependencies]
2024-10-09 17:10:12 +00:00
clap = { version = "4.4.10", features = ["derive"] }
scraper = "0.18.1"
requestty = "0.5.0"
reqwest = "0.11.22"
tokio = { version = "1.34.0", features = ["full"] }
regex = "1.10.2"
html-escape = "0.2.13"
2024-10-09 17:10:12 +00:00
phf = { version = "0.11.2", features = ["macros"] }
rayon = "1.8.0"
owo-colors = "3.5.0"
2024-10-09 17:10:12 +00:00
once_cell = "1.18.0"
num-to-words = "0.1.1"
2024-10-09 17:10:10 +00:00
[profile.release]
opt-level = "z"
strip = true
lto = true
codegen-units = 1