1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-03 14:32:22 +02:00
ripgrep/Cargo.toml

47 lines
1.0 KiB
TOML
Raw Normal View History

2016-02-27 11:07:26 -05:00
[package]
2016-03-28 18:11:35 -04:00
publish = false
name = "xrep"
2016-02-27 11:07:26 -05:00
version = "0.1.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Line oriented search tool using Rust's regex library.
"""
2016-03-28 18:11:35 -04:00
documentation = "https://github.com/BurntSushi/xrep"
homepage = "https://github.com/BurntSushi/xrep"
repository = "https://github.com/BurntSushi/xrep"
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"
name = "xrep"
2016-02-27 11:07:26 -05:00
[dependencies]
crossbeam = "0.2"
2016-02-27 11:07:26 -05:00
docopt = "0.6"
env_logger = "0.3"
2016-06-20 16:53:48 -04:00
grep = { version = "0.1", path = "grep" }
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"
parking_lot = "0.3"
2016-02-27 11:07:26 -05:00
regex = { version = "0.1", path = "/home/andrew/rust/regex" }
2016-03-28 18:11:35 -04:00
regex-syntax = { version = "0.3.1", path = "/home/andrew/rust/regex/regex-syntax" }
2016-02-27 11:07:26 -05:00
rustc-serialize = "0.3"
thread_local = "0.2"
2016-08-25 21:44:37 -04:00
walkdir = "0.1"
[features]
simd-accel = ["regex/simd-accel"]
2016-08-25 21:44:37 -04:00
[dev-dependencies]
glob = "0.2"
lazy_static = "0.2"
2016-02-27 11:07:26 -05:00
[profile.release]
debug = true
panic = "abort"