ripgrep-all/Cargo.toml

49 lines
1.2 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"
2020-05-19 10:07:16 +00:00
version = "0.9.6"
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]
2020-04-08 10:47:42 +00:00
tree_magic = { package = "tree_magic_fork", version = "0.2.2" }
regex = "1.3.6"
rkv = "0.10.4"
2019-06-05 14:43:40 +00:00
cachedir = "0.1.1"
path-clean = "0.1.0"
2020-04-08 10:47:42 +00:00
bincode = "1.2.1"
serde = { version = "1.0.106", features = ["derive"] }
zstd = "0.5.1"
lazy_static = "1.4.0"
serde_json = "1.0.51"
failure = "0.1.7"
zip = "0.5.5"
crossbeam = "0.7.3"
clap = { version = "2.33.0", features = ["wrap_help"] }
log = "0.4.8"
env_logger = "0.7.1"
2019-06-06 15:59:15 +00:00
xz2 = "0.1.6"
2020-04-08 10:47:42 +00:00
flate2 = "1.0.14"
2019-06-06 15:59:15 +00:00
bzip2 = "0.3.3"
tar = "0.4.26"
2020-04-08 10:47:42 +00:00
chrono = "0.4.11"
encoding_rs = "0.8.22"
encoding_rs_io = "0.1.7"
2020-05-19 09:10:11 +00:00
rusqlite = { version = "0.23.1", features = ["vtab", "bundled"] }
2019-06-07 14:57:11 +00:00
size_format = "1.0.2"
2020-04-08 10:47:42 +00:00
structopt = "0.3.12"
paste = "0.1.10"
tempfile = "3.1.0"
2019-06-12 15:45:15 +00:00
glob = "0.3.0"
exitfailure = "0.5.1"