1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-07 11:13:17 +02:00
ripgrep/Cargo.toml

52 lines
1.0 KiB
TOML
Raw Normal View History

2016-02-27 18:07:26 +02:00
[package]
2016-03-29 00:11:35 +02:00
publish = false
2016-09-08 22:15:44 +02:00
name = "ripgrep"
2016-02-27 18:07:26 +02:00
version = "0.1.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Line oriented search tool using Rust's regex library.
"""
2016-09-08 22:15:44 +02:00
documentation = "https://github.com/BurntSushi/ripgrep"
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
2016-02-27 18:07:26 +02:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
2016-08-26 03:44:37 +02:00
[[bin]]
bench = false
path = "src/main.rs"
2016-09-08 22:15:44 +02:00
name = "rg"
2016-08-26 03:44:37 +02:00
2016-02-27 18:07:26 +02:00
[dependencies]
crossbeam = "0.2"
2016-02-27 18:07:26 +02:00
docopt = "0.6"
env_logger = "0.3"
2016-06-20 22:53:48 +02:00
grep = { version = "0.1", path = "grep" }
2016-09-05 23:36:41 +02:00
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
2016-03-11 03:48:44 +02:00
memchr = "0.1"
memmap = "0.2"
2016-08-26 03:44:37 +02:00
num_cpus = "1"
2016-09-06 00:22:12 +02:00
regex = "0.1.75"
regex-syntax = "0.3.5"
2016-02-27 18:07:26 +02:00
rustc-serialize = "0.3"
2016-09-06 00:22:12 +02:00
term = "0.4"
thread_local = "0.2"
2016-08-26 03:44:37 +02:00
walkdir = "0.1"
2016-09-05 23:36:41 +02:00
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2"
winapi = "0.2"
[features]
simd-accel = ["regex/simd-accel"]
2016-08-26 03:44:37 +02:00
[dev-dependencies]
glob = "0.2"
2016-02-27 18:07:26 +02:00
[profile.release]
debug = true
panic = "abort"