-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 834 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 834 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
31
[package]
name = "procon-cli"
version = "0.2.5"
edition = "2024"
rust-version = "1.91"
description = "Gera listas de bloqueio AdBlock e hosts a partir da base de dados de sites não confiáveis da Fundação Procon-SP"
authors = ["Glauber Lima"]
license = "MIT"
repository = "https://github.com/glauberlima/procon-blocklist"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"native-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"] }
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = [
"std",
"now",
] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true