-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 875 Bytes
/
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
[package]
name = "ssc"
version = "0.3.0"
description = "A CLI tool to skip a CI build that is not concerned by the latest changes."
homepage = "https://github.com/KnpLabs/should-skip-ci"
repository = "[email protected]:KnpLabs/should-skip-ci.git"
documentation = "https://github.com/KnpLabs/should-skip-ci"
authors = ["KNP Labs"]
readme = "README.md"
license = "MIT"
edition = "2021"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
log = "0.4"
simple_logger = { version = "5.0", default-features = false }
[dev-dependencies]
rand = "0.8"
[profile.release]
# @see https://stackoverflow.com/a/54842093
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary