ripgrep-all/Cargo.toml

56 lines
1.4 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]
2020-06-10 15:55:13 +00:00
tree_magic = { package = "tree_magic_mini", version = "1.0.0" }
regex = "1.3.9"
2020-04-08 10:47:42 +00:00
rkv = "0.10.4"
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"] }
zstd = "0.5.3"
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"
2020-04-08 10:47:42 +00:00
crossbeam = "0.7.3"
2020-09-10 15:18:11 +00:00
clap = { version = "2.33.3", features = ["wrap_help"] }
log = "0.4.11"
2020-04-08 10:47:42 +00:00
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"
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"
2020-09-10 15:18:11 +00:00
rusqlite = { version = "0.24.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"] }
2020-06-08 21:11:43 +00:00
directories-next = "1.0.1"
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"
2020-09-10 15:18:11 +00:00
crossbeam-channel = "0.4.4"
dyn-clone = "1.0.2"
2020-06-11 21:09:31 +00:00
dyn-clonable = "0.9.0"
2020-09-28 20:55:55 +00:00
zip = "0.5.8"
owning_ref = "0.4.1"