-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 942 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (33 loc) · 942 Bytes
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
[package]
name = "gitb"
version = "0.3.1"
edition = "2021"
rust-version = "1.74"
authors = ["gitb contributors"]
license = "MIT"
description = "Blazing-fast cross-platform multi-repository git batch tool"
keywords = ["git", "batch", "multi-repo", "monorepo", "cli"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/luolin1024/git-batch"
homepage = "https://github.com/luolin1024/git-batch"
documentation = "https://github.com/luolin1024/git-batch#readme"
[[bin]]
name = "gitb"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
rayon = "1"
indicatif = "0.17"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
colored = "2"
anyhow = "1"
dialoguer = { version = "0.11", default-features = false, features = ["editor"] }
glob = "0.3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true