[package] authors = ["Nick Gerace "] categories = ["command-line-utilities", "command-line-interface"] description = "CLI tool to help keep track of your Git repositories." edition = "2018" homepage = "https://nickgerace.dev" keywords = ["git", "cli"] license = "Apache-2.0" name = "gfold" readme = "README.md" repository = "https://github.com/nickgerace/gfold/" version = "1.4.1" [dependencies] anyhow = "^1" ansi_term = { version = "^0", default-features = false } git2 = { version = "^0", default-features = false } prettytable-rs = { version = "^0", default-features = false } structopt = { version = "^0", default-features = false } [profile.release] codegen-units = 1 # Instruct linker to optimize at the link stage. lto = true # These applications should not panic often and only read from the filesystem. panic = "abort" # There is a noticeable speed difference from level 3 to 'z' or 's'. # We need this speed for the user experience. opt-level = 3