-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 884 Bytes
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 884 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
37
38
39
[package]
name = "git-repos-manager"
publish = true
version = "0.7.4"
edition = "2024"
rust-version = "1.90"
description = "Scan and manage git repositories with ease"
license = "MIT"
repository = "https://github.com/narnaud/git-repos"
readme = "README.md"
keywords = [ "git", "cli", "repository" ]
categories = [ "command-line-utilities", "development-tools" ]
exclude = [ ".github/" ]
[[bin]]
name = "git-repos"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6", features = [ "derive" ] }
walkdir = "2.5"
color-eyre = "0.6"
ratatui = "0.30"
crossterm = { version = "0.29", features = [ "event-stream" ] }
tokio = { version = "1.50", features = [
"rt-multi-thread",
"sync",
"macros",
"time",
] }
futures = "0.3"
dirs = "6.0"
serde = { version = "1.0", features = [ "derive" ] }
toml = "1.1"
yaml_serde = "0.10"
[profile.release]
lto = true
strip = true