lolcow-fortune 0.0.2

`fortunes` combined with `lolcat` and `cowsay`!
Documentation
[package]
name = "lolcow-fortune"
version = "0.0.2"
authors = ["David Knaack <davidkna@users.noreply.github.com>"]
edition = "2018"
description = "`fortunes` combined with `lolcat` and `cowsay`!"
readme = "README.md"
repository = "https://github.com/davidkna/lolcow-fortune-rs"
license = "MIT OR Apache-2.0"

[lib]
path = "src/lib.rs"

[[bin]]
name = "lolcow-fortune"
path = "src/main.rs"
required-features = ["build-binary"]

[features]
default = ["build-binary"]
build-binary = [
    "attohttpc",
    "lcowsay",
    "directories",
    "flate2",
    "lcat",
    "structopt",
    "tar",
]

[dependencies]
# Lib
memchr = "2.3"
rand = { version = "0.7", features = ["std", "small_rng"] }

# Binary
directories = { version = "2.0.2", optional = true }
structopt =  { version = "0.3.14", optional = true }

# Download
flate2 = { version = "1.0", optional = true, default-features = false, features = ["rust_backend"] }
attohttpc = { version = "0.13", optional = true, default-features = false, features = ["tls"] }
tar = { version = "0.4", optional = true }

# Allocator
mimalloc = { version = "0.1.19", optional = true, default-features = false }

[dependencies.lcowsay]
version = "0.2"
optional = true

[dependencies.lcat]
version = "0.3"
optional = true