2018-04-29 15:29:52 +02:00
|
|
|
[package]
|
|
|
|
name = "grep-printer"
|
2021-06-12 14:07:46 +02:00
|
|
|
version = "0.1.6" #:version
|
2018-04-29 15:29:52 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
An implementation of the grep crate's Sink trait that provides standard
|
|
|
|
printing of search results, similar to grep itself.
|
|
|
|
"""
|
|
|
|
documentation = "https://docs.rs/grep-printer"
|
2020-02-29 03:31:43 +02:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
|
2018-04-29 15:29:52 +02:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["grep", "pattern", "print", "printer", "sink"]
|
2022-05-09 13:52:11 +02:00
|
|
|
license = "Unlicense OR MIT"
|
2021-06-02 01:31:27 +02:00
|
|
|
edition = "2018"
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["serde1"]
|
2021-06-02 02:45:45 +02:00
|
|
|
serde1 = ["base64", "serde", "serde_json"]
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-05 15:21:49 +02:00
|
|
|
base64 = { version = "0.20.0", optional = true }
|
2023-01-05 15:19:33 +02:00
|
|
|
bstr = "1.1.0"
|
2023-01-05 16:02:40 +02:00
|
|
|
grep-matcher = { version = "0.1.6", path = "../matcher" }
|
2021-06-12 14:07:28 +02:00
|
|
|
grep-searcher = { version = "0.1.8", path = "../searcher" }
|
2019-01-19 16:32:32 +02:00
|
|
|
termcolor = "1.0.4"
|
2021-06-02 02:45:45 +02:00
|
|
|
serde = { version = "1.0.77", optional = true, features = ["derive"] }
|
2018-09-07 19:14:31 +02:00
|
|
|
serde_json = { version = "1.0.27", optional = true }
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-05 16:05:39 +02:00
|
|
|
grep-regex = { version = "0.1.11", path = "../regex" }
|