-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (38 loc) · 1.08 KB
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
40
41
42
43
[package]
name = "gitnibble-rs"
version = "0.1.2"
edition = "2021"
description = "Instant, offline-first, context-aware .gitignore TUI"
license = "MIT"
repository = "https://github.com/programmersd21/gitnibble"
keywords = ["gitignore", "tui", "cli", "git", "ratatui"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
ratatui = "0.30"
crossterm = "0.29"
clap = { version = "4.5", features = ["derive"] }
walkdir = "2.5"
nucleo-matcher = "0.3"
serde = { version = "1.0", features = ["derive"] }
toml = "1.1"
dirs = "6.0"
thiserror = "2.0"
arboard = { version = "3.4", optional = true }
tokio = { version = "1.40", features = ["rt-multi-thread", "macros"], optional = true }
reqwest = { version = "0.13", features = ["json"], optional = true }
serde_json = { version = "1.0", optional = true }
[features]
default = ["clipboard"]
clipboard = ["dep:arboard"]
fetch = ["dep:tokio", "dep:reqwest", "dep:serde_json"]
[[bin]]
name = "gitnibble"
path = "src/main.rs"
[lib]
name = "gitnibble"
path = "src/lib.rs"
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1