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

27 lines
756 B
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"
[dependencies]
docopt = "0.6"
2016-06-20 16:53:48 -04:00
grep = { version = "0.1", path = "grep" }
2016-03-10 20:48:44 -05:00
memchr = "0.1"
memmap = "0.2"
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"
[profile.release]
debug = true