-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
50 lines (43 loc) · 1 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "grip-grab"
version = "0.6.7"
edition = "2021"
authors = ["Alexandre Pasmantier <[email protected]>"]
license = "Apache-2.0"
description = "A faster, more lightweight ripgrep alternative."
readme = "README.md"
homepage = "https://github.com/alexpasmantier/grip-grab"
repository = "https://github.com/alexpasmantier/grip-grab"
keywords = ["cli", "search", "grep", "ripgrep", "rust"]
categories = [
"command-line-utilities",
"command-line-interface",
"concurrency",
"development-tools",
]
[dependencies]
clap = { version = "4.5.9", features = ["derive"] }
devicons = "0.6.7"
grep = "0.3.1"
ignore = "0.4.22"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
termcolor = "1.4.1"
thiserror = "1.0.64"
[[bin]]
name = "gg"
path = "src/main.rs"
[features]
default = []
upgrade = []
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = "none"
strip = "symbols"
debug-assertions = false
overflow-checks = false
lto = "thin"
panic = "abort"