2019-06-04 18:08:26 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "rga"
|
2019-06-04 18:17:59 +00:00
|
|
|
description = "ripgrep, except for pdf, ebooks, Office documents, etc"
|
|
|
|
license = "AGPL-3.0-or-later"
|
2019-06-07 13:46:54 +00:00
|
|
|
version = "0.4.0"
|
2019-06-06 10:31:18 +00:00
|
|
|
repository = "https://github.com/phiresky/rga"
|
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]
|
2019-06-04 18:17:59 +00:00
|
|
|
tree_magic = { package = "tree_magic_fork", version="0.2" }
|
2019-06-04 18:08:26 +00:00
|
|
|
regex = "1.1.6"
|
2019-06-06 23:00:52 +00:00
|
|
|
rkv = "0.9.6"
|
2019-06-05 14:43:40 +00:00
|
|
|
cachedir = "0.1.1"
|
|
|
|
path-clean = "0.1.0"
|
|
|
|
bincode = "1.1.4"
|
2019-06-06 23:00:52 +00:00
|
|
|
serde = { version = "1.0.92", features = ["derive"] }
|
2019-06-05 14:43:40 +00:00
|
|
|
zstd = "0.4.24"
|
2019-06-05 19:28:35 +00:00
|
|
|
lazy_static = "1.3.0"
|
|
|
|
serde_json = "1.0.39"
|
|
|
|
failure = "0.1.5"
|
2019-06-06 09:00:13 +00:00
|
|
|
zip = "0.5.2"
|
|
|
|
crossbeam = "0.7.1"
|
2019-06-06 10:31:18 +00:00
|
|
|
clap = "2.33.0"
|
|
|
|
log = "0.4.6"
|
|
|
|
env_logger = "0.6.1"
|
2019-06-06 15:59:15 +00:00
|
|
|
xz2 = "0.1.6"
|
|
|
|
flate2 = "1.0.7"
|
|
|
|
bzip2 = "0.3.3"
|
|
|
|
tar = "0.4.26"
|
2019-06-06 21:19:59 +00:00
|
|
|
chrono = "0.4.6"
|
2019-06-06 22:57:53 +00:00
|
|
|
encoding_rs = "0.8.17"
|
|
|
|
encoding_rs_io = "0.1.6"
|
2019-06-07 13:46:54 +00:00
|
|
|
rusqlite = "0.18.0"
|