-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 1.08 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
[package]
name = "loto"
homepage = "https://github.com/cleissonalves/loto"
authors = ["[email protected]"]
description = "Aplicacao CLI para consulta e analise de resultados de sorteios das loterias da Caixa."
version = "0.1.5"
edition = "2021"
# Optimizations from: https://github.com/johnthagen/min-sized-rust
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # Link Time Optimization.
codegen-units = 1 # Allow for maximum size reduction optimizations.
# panic = "abort" # remove unwinds of stack on panics to produce helpful backtraces. Use with caution, possible impact on behaviour.
[dependencies]
anyhow = "1.0.95"
atty = "0.2.14"
clap = { version = "4.5.23", features = ["derive"] }
colored = "2.2.0"
# indicatif = "0.17.9"
# derive_more = { version = "1.0.0", features = ["display"] }
minreq = { version = "2.13.0", features = ["https"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
strum = { version = "0.26.3", features = ["derive"] }
[lints.clippy]
bool_comparison = "allow"
zero_prefixed_literal = "allow"