1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-19 05:49:14 +02:00
ripgrep/Cargo.toml

55 lines
1.1 KiB
TOML
Raw Normal View History

2016-02-27 11:07:26 -05:00
[package]
2016-09-08 16:15:44 -04:00
name = "ripgrep"
2016-09-17 12:55:09 -04:00
version = "0.1.3" #:version
2016-02-27 11:07:26 -05:00
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
2016-09-13 21:16:18 -04:00
Line oriented search tool using Rust's regex library. Combines the raw
performance of grep with the usability of the silver searcher.
2016-02-27 11:07:26 -05:00
"""
2016-09-08 16:15:44 -04:00
documentation = "https://github.com/BurntSushi/ripgrep"
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
2016-02-27 11:07:26 -05:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
2016-08-25 21:44:37 -04:00
[[bin]]
bench = false
path = "src/main.rs"
2016-09-08 16:15:44 -04:00
name = "rg"
2016-08-25 21:44:37 -04:00
2016-09-09 22:58:30 -04:00
[[test]]
name = "integration"
path = "tests/tests.rs"
2016-02-27 11:07:26 -05:00
[dependencies]
deque = "0.3"
2016-02-27 11:07:26 -05:00
docopt = "0.6"
env_logger = "0.3"
fnv = "1.0"
2016-09-17 11:34:27 -04:00
grep = { version = "0.1.1", path = "grep" }
2016-09-05 17:36:41 -04:00
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
2016-03-10 20:48:44 -05:00
memchr = "0.1"
memmap = "0.2"
2016-08-25 21:44:37 -04:00
num_cpus = "1"
2016-09-11 18:52:42 -04:00
regex = "0.1.76"
2016-02-27 11:07:26 -05:00
rustc-serialize = "0.3"
2016-09-05 18:22:12 -04:00
term = "0.4"
2016-08-25 21:44:37 -04:00
walkdir = "0.1"
2016-09-05 17:36:41 -04:00
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2"
winapi = "0.2"
[features]
simd-accel = ["regex/simd-accel"]
2016-08-25 21:44:37 -04:00
[dev-dependencies]
glob = "0.2"
2016-02-27 11:07:26 -05:00
[profile.release]
debug = true
panic = "abort"