ripgrep-all/Cargo.toml

67 lines
2.0 KiB
TOML
Raw Normal View History

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-05-26 14:37:28 +00:00
version = "1.0.0-alpha.5"
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]
2023-05-25 14:15:49 +00:00
anyhow = {version = "1.0.71", features = ["backtrace"]}
2023-05-25 10:19:23 +00:00
async-compression = { version = "0.4.0", features = ["all", "all-algorithms", "tokio"] }
2023-05-25 14:15:49 +00:00
async-stream = "0.3.5"
async-trait = "0.1.68"
2023-02-21 11:17:02 +00:00
async_zip = {version = "0.0.12", features = ["full"]}
2023-05-25 14:15:49 +00:00
bincode = "1.3.3"
bytes = "1.4.0"
clap = {version = "4.3.0", features = ["wrap_help"]}
crossbeam = "0.8.2"
crossbeam-channel = "0.5.8"
derive_more = "0.99.17"
2022-12-25 17:44:52 +00:00
directories-next = "2.0.0"
dyn-clonable = "0.9.0"
2023-05-25 14:15:49 +00:00
dyn-clone = "1.0.11"
encoding_rs = "0.8.32"
2020-04-08 10:47:42 +00:00
encoding_rs_io = "0.1.7"
2023-02-21 11:17:02 +00:00
env_logger = "0.10.0"
2023-05-25 14:15:49 +00:00
glob = "0.3.1"
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"
2023-05-25 14:15:49 +00:00
log = "0.4.17"
2023-07-31 12:30:49 +00:00
mailparse = "0.14.0"
2023-05-25 14:15:49 +00:00
memchr = "2.5.0"
2023-07-31 12:30:49 +00:00
mime2ext = "0.1.52"
2023-05-25 14:15:49 +00:00
paste = "1.0.12"
2023-05-25 10:19:23 +00:00
path-clean = "1.0.1"
2022-12-25 17:44:52 +00:00
pretty-bytes = "0.2.2"
2023-05-25 14:15:49 +00:00
regex = "1.8.2"
2023-05-25 10:19:23 +00:00
rusqlite = {version = "0.29.0", features = ["vtab", "bundled"]}
2023-05-25 14:15:49 +00:00
schemars = {version = "0.8.12", features = ["preserve_order"]}
serde = {version = "1.0.163", features = ["derive"]}
serde_json = "1.0.96"
2019-06-07 14:57:11 +00:00
size_format = "1.0.2"
2023-05-25 14:15:49 +00:00
structopt = "0.3.26"
tempfile = "3.5.0"
tokio = {version = "1.28.1", features = ["full"]}
2023-05-25 13:37:46 +00:00
tokio-rusqlite = "0.4.0"
2023-05-25 14:15:49 +00:00
tokio-stream = {version = "0.1.14", 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" }
2023-05-25 14:15:49 +00:00
tokio-util = {version = "0.7.8", features = ["io", "full"]}
tree_magic = {package = "tree_magic_mini", version = "3.0.3"}
2021-08-26 14:00:27 +00:00
[dev-dependencies]
2023-05-25 14:15:49 +00:00
async-recursion = "1.0.4"
2023-05-25 10:19:23 +00:00
ctor = "0.2.0"
2022-12-25 17:44:52 +00:00
pretty_assertions = "1.3.0"
2023-05-25 14:15:49 +00:00
tempfile = "3.5.0"
tokio-test = "0.4.2"