grip-grab/Cargo.toml

51 lines
1023 B
TOML
Raw Permalink Normal View History

2024-07-21 02:56:54 +03:00
[package]
2024-10-04 14:42:09 +03:00
name = "grip-grab"
version = "0.5.5"
2024-07-21 02:56:54 +03:00
edition = "2021"
2024-07-21 15:02:52 +03:00
authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"]
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"
2024-07-21 15:15:45 +03:00
keywords = ["cli", "search", "grep", "ripgrep", "rust"]
2024-07-21 15:02:52 +03:00
categories = [
"command-line-utilities",
"command-line-interface",
"concurrency",
"development-tools",
]
2024-07-21 02:56:54 +03:00
[dependencies]
clap = { version = "4.5.9", features = ["derive"] }
2024-10-04 15:15:15 +03:00
devicons = "0.6.7"
2024-07-21 02:56:54 +03:00
grep = "0.3.1"
ignore = "0.4.22"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
termcolor = "1.4.1"
2024-10-06 14:14:15 +03:00
thiserror = "1.0.64"
2024-07-21 15:34:20 +03:00
[[bin]]
name = "gg"
path = "src/main.rs"
2024-10-06 14:14:15 +03:00
[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 = "fat"
panic = "abort"