1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-29 22:01:04 +02:00
ripgrep/crates/cli/Cargo.toml

28 lines
759 B
TOML
Raw Normal View History

[package]
name = "grep-cli"
2023-01-05 08:57:31 -05:00
version = "0.1.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Utilities for search oriented command line applications.
"""
documentation = "https://docs.rs/grep-cli"
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/cli"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/cli"
readme = "README.md"
keywords = ["regex", "grep", "cli", "utility", "util"]
license = "Unlicense OR MIT"
2021-06-01 19:31:27 -04:00
edition = "2018"
[dependencies]
atty = "0.2.11"
2023-01-05 08:19:33 -05:00
bstr = "1.1.0"
2023-01-05 08:49:38 -05:00
globset = { version = "0.4.10", path = "../globset" }
lazy_static = "1.1.0"
log = "0.4.5"
regex = "1.1"
same-file = "1.0.4"
termcolor = "1.0.4"
[target.'cfg(windows)'.dependencies.winapi-util]
version = "0.1.1"