grip-grab/Cargo.toml

32 lines
777 B
TOML
Raw Normal View History

2024-07-21 02:56:54 +03:00
[package]
2024-09-14 21:52:15 +03:00
name = "grip-grep"
2024-09-01 15:49:49 +03:00
version = "0.3.0"
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"
2024-09-14 21:52:15 +03:00
homepage = "https://github.com/alexpasmantier/grip-grep"
repository = "https://github.com/alexpasmantier/grip-grep"
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]
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
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-07-21 15:34:20 +03:00
[[bin]]
name = "gg"
path = "src/main.rs"