1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-02-04 06:08:39 +02:00
ripgrep/Cargo.toml

81 lines
1.9 KiB
TOML
Raw Normal View History

2016-02-27 11:07:26 -05:00
[package]
2016-09-08 16:15:44 -04:00
name = "ripgrep"
2018-02-20 20:19:03 -05:00
version = "0.8.1" #:version
2016-02-27 11:07:26 -05:00
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
ripgrep is a line-oriented search tool that recursively searches your current
directory for a regex pattern while respecting your gitignore rules. ripgrep
has first class support on Windows, macOS and Linux
2016-02-27 11:07:26 -05:00
"""
2016-09-08 16:15:44 -04:00
documentation = "https://github.com/BurntSushi/ripgrep"
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
2016-02-27 11:07:26 -05:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
2017-01-21 11:31:09 -05:00
categories = ["command-line-utilities", "text-processing"]
2016-02-27 11:07:26 -05:00
license = "Unlicense/MIT"
exclude = ["HomebrewFormula"]
build = "build.rs"
2016-02-27 11:07:26 -05:00
2017-08-23 19:54:33 -04:00
[badges]
travis-ci = { repository = "BurntSushi/ripgrep" }
appveyor = { repository = "BurntSushi/ripgrep" }
2016-08-25 21:44:37 -04:00
[[bin]]
bench = false
path = "src/main.rs"
2016-09-08 16:15:44 -04:00
name = "rg"
2016-08-25 21:44:37 -04:00
2016-09-09 22:58:30 -04:00
[[test]]
name = "integration"
path = "tests/tests.rs"
2017-12-19 01:04:49 +02:00
[workspace]
members = ["grep", "globset", "ignore", "termcolor", "wincolor"]
2017-12-19 01:04:49 +02:00
2016-02-27 11:07:26 -05:00
[dependencies]
atty = "0.2.9"
bytecount = "0.3.1"
2017-08-28 13:19:17 +03:00
encoding_rs = "0.7"
2018-04-21 12:09:15 -04:00
globset = { version = "0.4.0", path = "globset" }
2018-02-11 13:35:54 -05:00
grep = { version = "0.1.8", path = "grep" }
2018-02-11 13:42:59 -05:00
ignore = { version = "0.4.0", path = "ignore" }
2017-11-30 17:51:06 +01:00
lazy_static = "1"
libc = "0.2"
log = "0.4"
2017-10-21 18:45:39 -04:00
memchr = "2"
memmap = "0.6"
2016-08-25 21:44:37 -04:00
num_cpus = "1"
regex = "0.2.10"
same-file = "1"
2018-02-11 13:39:12 -05:00
termcolor = { version = "0.3.4", path = "termcolor" }
2016-08-25 21:44:37 -04:00
[dependencies.clap]
version = "2.29.4"
default-features = false
features = ["suggestions", "color"]
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["std", "winnt"]
[build-dependencies]
2017-11-30 17:51:06 +01:00
lazy_static = "1"
[build-dependencies.clap]
version = "2.29.4"
default-features = false
features = ["suggestions", "color"]
[features]
avx-accel = ["bytecount/avx-accel", "regex/unstable"]
2017-10-21 18:45:24 -04:00
simd-accel = [
"bytecount/simd-accel",
"encoding_rs/simd-accel",
"regex/unstable",
2017-10-21 18:45:24 -04:00
]
unstable = ["regex/unstable"]
2016-02-27 11:07:26 -05:00
[profile.release]
debug = true