third_party_rust_termcolor/Cargo.toml

27 lines
756 B
TOML
Raw Normal View History

2016-02-27 16:07:26 +00:00
[package]
2016-03-28 22:11:35 +00:00
publish = false
name = "xrep"
2016-02-27 16:07:26 +00: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 22:11:35 +00:00
documentation = "https://github.com/BurntSushi/xrep"
homepage = "https://github.com/BurntSushi/xrep"
repository = "https://github.com/BurntSushi/xrep"
2016-02-27 16:07:26 +00:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
docopt = "0.6"
2016-06-20 20:53:48 +00:00
grep = { version = "0.1", path = "grep" }
2016-03-11 01:48:44 +00:00
memchr = "0.1"
memmap = "0.2"
2016-02-27 16:07:26 +00:00
regex = { version = "0.1", path = "/home/andrew/rust/regex" }
2016-03-28 22:11:35 +00:00
regex-syntax = { version = "0.3.1", path = "/home/andrew/rust/regex/regex-syntax" }
2016-02-27 16:07:26 +00:00
rustc-serialize = "0.3"
[profile.release]
debug = true