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]
|
2016-08-28 01:37:12 -04:00
|
|
|
crossbeam = "0.2"
|
2016-02-27 11:07:26 -05:00
|
|
|
docopt = "0.6"
|
2016-08-28 01:37:12 -04:00
|
|
|
env_logger = "0.3"
|
2016-06-20 16:53:48 -04:00
|
|
|
grep = { version = "0.1", path = "grep" }
|
2016-08-28 01:37:12 -04:00
|
|
|
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-08-28 20:18:34 -04:00
|
|
|
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"
|
2016-08-28 20:18:34 -04:00
|
|
|
thread_local = "0.2"
|
2016-08-25 21:44:37 -04:00
|
|
|
walkdir = "0.1"
|
|
|
|
|
2016-08-27 01:01:06 -04:00
|
|
|
[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
|
2016-08-28 20:18:34 -04:00
|
|
|
panic = "abort"
|