wof 0.2.0

The Who's On First rust library and command line.
Documentation
[package]
name = "wof"
version = "0.2.0"
authors = ["Jones Magloire @Joxit"]
description = "The Who's On First rust library and command line."
edition = "2018"
license = "MIT"
autobins = false
repository = "https://github.com/Joxit/wof-cli"
homepage = "https://github.com/Joxit/wof-cli"
documentation = "https://docs.rs/wof/"
readme = "README.md"
categories = ["cli"]

[[bin]]
name = "wof"
path = "src/main.rs"
required-features = ["cli"]

[dependencies]
json = "^0.12.2"
walkdir = "^2.3.1"
regex = "^1.3.3"
libc = "^0.2.67"
shapefile = "^0.1.1"
which = { version = "^3.1.0", optional = true }
tar = { version = "^0.4.26", optional = true }
flate2 = { version ="^1.0.13", optional = true }
structopt = { version = "^0.3", optional = true }
attohttpc = { version = "^0.8.0", optional = true }
chrono = { version = "^0.4.10", optional = true }

[dependencies.log]
version = "^0.4.8"
features = ["std"]
optional = true

[dependencies.git2]
version = "^0.10"
features = ["vendored-openssl"]
optional = true

[dependencies.rusqlite]
version = "^0.21.0"
features = ["bundled"]

[features]
cli = ["which", "tar", "flate2", "structopt", "attohttpc", "chrono", "log", "git2"]