summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 4752b7254119188471d55855b36a248859941ec9 (plain)
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
32
[package]
authors = ["Nick Gerace <nickagerace@gmail.com>"]
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.0"

[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