mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2024-12-12 19:18:24 +02:00
55 lines
1.0 KiB
TOML
55 lines
1.0 KiB
TOML
[package]
|
|
publish = false
|
|
name = "ripgrep"
|
|
version = "0.1.0" #:version
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
description = """
|
|
Line oriented search tool using Rust's regex library.
|
|
"""
|
|
documentation = "https://github.com/BurntSushi/ripgrep"
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
|
readme = "README.md"
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
license = "Unlicense/MIT"
|
|
|
|
[[bin]]
|
|
bench = false
|
|
path = "src/main.rs"
|
|
name = "rg"
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "tests/tests.rs"
|
|
|
|
[dependencies]
|
|
crossbeam = "0.2"
|
|
docopt = "0.6"
|
|
env_logger = "0.3"
|
|
grep = { version = "0.1", path = "grep" }
|
|
lazy_static = "0.2"
|
|
libc = "0.2"
|
|
log = "0.3"
|
|
memchr = "0.1"
|
|
memmap = "0.2"
|
|
num_cpus = "1"
|
|
regex = "0.1.76"
|
|
rustc-serialize = "0.3"
|
|
term = "0.4"
|
|
thread_local = "0.2"
|
|
walkdir = "0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
kernel32-sys = "0.2"
|
|
winapi = "0.2"
|
|
|
|
[features]
|
|
simd-accel = ["regex/simd-accel"]
|
|
|
|
[dev-dependencies]
|
|
glob = "0.2"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
panic = "abort"
|