ripgrep-all/Cargo.toml

66 lines
1.8 KiB
TOML
Raw Normal View History

2019-06-04 18:08:26 +00:00
[package]
2019-06-11 18:35:20 +00:00
name = "ripgrep_all"
2019-06-15 09:37:41 +00:00
description = "rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc."
2019-06-04 18:17:59 +00:00
license = "AGPL-3.0-or-later"
2019-06-15 09:43:19 +00:00
readme = "README.md"
version = "0.9.7-alpha.0"
2020-05-19 09:10:11 +00:00
repository = "https://github.com/phiresky/ripgrep-all"
homepage = "https://github.com/phiresky/ripgrep-all"
2019-06-04 18:08:26 +00:00
authors = ["phiresky <phireskyde+git@gmail.com>"]
edition = "2018"
2019-06-04 18:12:04 +00:00
exclude = [
"exampledir/*"
]
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]
2021-08-26 12:33:41 +00:00
tree_magic = { package = "tree_magic_mini", version = "3.0.0" }
regex = "1.3.9"
2022-10-26 15:21:39 +00:00
rkv = "0.17"
2019-06-05 14:43:40 +00:00
path-clean = "0.1.0"
2020-09-10 15:18:11 +00:00
bincode = "1.3.1"
serde = { version = "1.0.115", features = ["derive"] }
2022-10-26 15:21:39 +00:00
zstd = "0.11.2"
2020-04-08 10:47:42 +00:00
lazy_static = "1.4.0"
2020-09-10 15:18:11 +00:00
serde_json = "1.0.57"
2021-08-26 12:33:41 +00:00
crossbeam = "0.8.1"
2022-10-26 15:21:39 +00:00
clap = { version = "4.0.18", features = ["wrap_help"] }
2020-09-10 15:18:11 +00:00
log = "0.4.11"
2021-08-26 12:33:41 +00:00
env_logger = "0.9.0"
2019-06-06 15:59:15 +00:00
xz2 = "0.1.6"
2020-04-08 10:47:42 +00:00
flate2 = "1.0.14"
2020-09-10 15:18:11 +00:00
bzip2 = "0.4.1"
tar = "0.4.30"
chrono = "0.4.15"
encoding_rs = "0.8.24"
2020-04-08 10:47:42 +00:00
encoding_rs_io = "0.1.7"
2022-10-26 15:21:39 +00:00
rusqlite = { version = "0.28.0", features = ["vtab", "bundled"] }
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"
paste = "1.0.0"
2020-04-08 10:47:42 +00:00
tempfile = "3.1.0"
2019-06-12 15:45:15 +00:00
glob = "0.3.0"
2020-09-10 15:18:11 +00:00
anyhow = "1.0.32"
schemars = { version = "0.8.0-alpha-4", features = ["preserve_order"] }
2021-08-26 12:33:41 +00:00
directories-next = "2.0.0"
2020-09-10 15:18:11 +00:00
derive_more = "0.99.9"
2020-06-09 10:47:34 +00:00
pretty-bytes = "0.2.2"
2020-06-11 12:38:50 +00:00
memchr = "2.3.3"
2021-08-26 12:33:41 +00:00
crossbeam-channel = "0.5.1"
2020-09-10 15:18:11 +00:00
dyn-clone = "1.0.2"
2020-06-11 21:09:31 +00:00
dyn-clonable = "0.9.0"
2022-10-26 15:21:39 +00:00
zip = "0.6.3"
2020-09-28 20:55:55 +00:00
owning_ref = "0.4.1"
2022-10-29 18:54:05 +00:00
tokio = { version = "1.21.2", features = ["full"] }
async-compression = { version = "0.3.15", features = ["tokio", "zstd"] }
tokio-stream = { version = "0.1.11", features = ["io-util", "tokio-util"] }
async-stream = "0.3.3"
bytes = "1.2.1"
tokio-util = { version = "0.7.4", features = ["io", "full"] }
2021-08-26 14:00:27 +00:00
[dev-dependencies]
ctor = "0.1.20"
tokio-test = "0.4.2"