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

20 lines
517 B
TOML
Raw Normal View History

2016-06-20 22:53:48 +02:00
[package]
name = "grep"
2016-11-06 22:35:17 +02:00
version = "0.1.4" #:version
2016-06-20 22:53:48 +02:00
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
"""
2016-09-14 03:13:33 +02:00
documentation = "http://burntsushi.net/rustdoc/grep/"
2016-09-08 22:15:44 +02:00
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
2016-06-20 22:53:48 +02:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
log = "0.3"
2016-12-30 22:43:29 +02:00
memchr = "1"
2016-12-30 23:24:09 +02:00
regex = "0.2.0"
regex-syntax = "0.4.0"