2019-06-04 18:08:26 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
authors = ["phiresky <phireskyde+git@gmail.com>"]
|
2022-12-25 17:44:52 +00:00
|
|
|
description = "rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc."
|
2023-02-21 08:52:00 +00:00
|
|
|
edition = "2021"
|
2019-06-04 18:12:04 +00:00
|
|
|
exclude = [
|
2022-12-25 17:44:52 +00:00
|
|
|
"exampledir/*",
|
2019-06-04 18:12:04 +00:00
|
|
|
]
|
2022-12-25 17:44:52 +00:00
|
|
|
homepage = "https://github.com/phiresky/ripgrep-all"
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
name = "ripgrep_all"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/phiresky/ripgrep-all"
|
2023-02-18 23:16:44 +00:00
|
|
|
version = "1.0.0-alpha.2"
|
2019-06-04 18:08:26 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-25 17:44:52 +00:00
|
|
|
anyhow = "1.0.32"
|
2022-12-25 19:00:47 +00:00
|
|
|
async-compression = {version = "0.3.15", features = ["all", "all-algorithms", "tokio"]}
|
2022-12-25 17:44:52 +00:00
|
|
|
async-stream = "0.3.3"
|
2023-02-18 22:10:38 +00:00
|
|
|
async-trait = "0.1.64"
|
2022-12-26 20:51:22 +00:00
|
|
|
async_zip = "0.0.9"
|
2020-09-10 15:18:11 +00:00
|
|
|
bincode = "1.3.1"
|
2022-12-25 17:44:52 +00:00
|
|
|
bytes = "1.2.1"
|
|
|
|
clap = {version = "4.0.18", features = ["wrap_help"]}
|
|
|
|
crossbeam = "0.8.1"
|
|
|
|
crossbeam-channel = "0.5.1"
|
|
|
|
derive_more = "0.99.9"
|
|
|
|
directories-next = "2.0.0"
|
|
|
|
dyn-clonable = "0.9.0"
|
|
|
|
dyn-clone = "1.0.2"
|
2020-09-10 15:18:11 +00:00
|
|
|
encoding_rs = "0.8.24"
|
2020-04-08 10:47:42 +00:00
|
|
|
encoding_rs_io = "0.1.7"
|
2022-12-25 17:44:52 +00:00
|
|
|
env_logger = "0.9.0"
|
|
|
|
glob = "0.3.0"
|
2022-12-26 20:10:42 +00:00
|
|
|
json_comments = "0.2.1"
|
2022-12-25 17:44:52 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4.11"
|
|
|
|
memchr = "2.3.3"
|
|
|
|
paste = "1.0.0"
|
|
|
|
path-clean = "0.1.0"
|
|
|
|
pretty-bytes = "0.2.2"
|
|
|
|
regex = "1.3.9"
|
|
|
|
rkv = "0.17"
|
|
|
|
rusqlite = {version = "0.28.0", features = ["vtab", "bundled"]}
|
|
|
|
schemars = {version = "0.8.0-alpha-4", features = ["preserve_order"]}
|
|
|
|
serde = {version = "1.0.115", features = ["derive"]}
|
|
|
|
serde_json = "1.0.57"
|
2019-06-07 14:57:11 +00:00
|
|
|
size_format = "1.0.2"
|
2020-09-10 15:18:11 +00:00
|
|
|
structopt = "0.3.17"
|
2020-04-08 10:47:42 +00:00
|
|
|
tempfile = "3.1.0"
|
2022-12-25 17:44:52 +00:00
|
|
|
tokio = {version = "1.21.2", features = ["full"]}
|
|
|
|
tokio-stream = {version = "0.1.11", features = ["io-util", "tokio-util"]}
|
2022-12-26 17:58:17 +00:00
|
|
|
tokio-tar = { git = "https://github.com/vorot93/tokio-tar", version = "0.3.0" }
|
2022-12-25 17:44:52 +00:00
|
|
|
tokio-util = {version = "0.7.4", features = ["io", "full"]}
|
|
|
|
tree_magic = {package = "tree_magic_mini", version = "3.0.0"}
|
2021-08-26 14:00:27 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-06 11:37:14 +00:00
|
|
|
async-recursion = "1.0.0"
|
2021-08-26 14:00:27 +00:00
|
|
|
ctor = "0.1.20"
|
2022-12-25 17:44:52 +00:00
|
|
|
pretty_assertions = "1.3.0"
|
2022-12-24 22:06:20 +00:00
|
|
|
tokio-test = "0.4.2"
|