1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00
ripgrep/Cargo.toml

38 lines
898 B
TOML
Raw Normal View History

2016-02-27 18:07:26 +02:00
[package]
2016-03-29 00:11:35 +02:00
publish = false
name = "xrep"
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-03-29 00:11:35 +02:00
documentation = "https://github.com/BurntSushi/xrep"
homepage = "https://github.com/BurntSushi/xrep"
repository = "https://github.com/BurntSushi/xrep"
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"
name = "xrep"
2016-02-27 18:07:26 +02:00
[dependencies]
docopt = "0.6"
2016-06-20 22:53:48 +02:00
grep = { version = "0.1", path = "grep" }
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-02-27 18:07:26 +02:00
regex = { version = "0.1", path = "/home/andrew/rust/regex" }
2016-03-29 00:11:35 +02:00
regex-syntax = { version = "0.3.1", path = "/home/andrew/rust/regex/regex-syntax" }
2016-02-27 18:07:26 +02:00
rustc-serialize = "0.3"
2016-08-26 03:44:37 +02:00
walkdir = "0.1"
[dev-dependencies]
glob = "0.2"
lazy_static = "0.2"
2016-02-27 18:07:26 +02:00
[profile.release]
debug = true