WIP: Rewritten man page indexer in Rust

Currently just figuring out how to read archives. Turns out to not be as
simple as I had expected.
This commit is contained in:
Yorhel 2016-10-22 14:54:35 +02:00
parent 965aa9a2f6
commit 022e9acc4f
7 changed files with 669 additions and 0 deletions

10
indexer/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "indexer"
version = "0.1.0"
authors = ["Yorhel <git@yorhel.nl>"]
[dependencies]
regex = "0.1.77"
log = "0.3.6"
env_logger = "0.3.5"
libarchive = { git = "https://github.com/17dec/libarchive-rust" }