-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 979 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
28
29
30
31
32
33
34
35
36
37
[package]
name = "gitraider"
version = "0.1.8"
description = "Mass git repository search, replace and commit tool"
authors = ["mbrav <[email protected]>"]
edition = "2021"
repository = "https://github.com/mbrav/gitraider/"
homepage = "https://github.com/mbrav/gitraider/"
license-file = "LICENSE"
keywords = ["git", "rust", "cli", "libgit2", "commit", "command-line-tool"]
categories = ["command-line-utilities"]
[features]
ref_debug = []
[profile.dev]
opt-level = 1
# Sometimes faster, sometimes slower
# parallel-compiler = true
# Build optimizations: https://github.com/johnthagen/min-sized-rust
[profile.release]
panic = "abort"
strip = true # Strip symbols from binary
opt-level = "z" # Optimize for size
lto = true # Enable link time optimization
codegen-units = 1 # Maximize size reduction optimizations (takes longer)
[[bin]]
name = "gitraider"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
git2 = "0.17"
regex = "1"