A cli program to easily handle .gitignore files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
481 B

[package]
name = "gitig"
version = "0.1.0"
authors = ["Marcel Schneider <marcel@webschneider.org>"]
edition = "2018"
[dependencies]
log = "0.4"
stderrlog = "0.4"
structopt = "0.3"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dependencies.error-chain]
version = "0.12"
default-features = false # disable pulling in backtrace
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
# Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
#panic = 'abort'