bzfquery 2.0.0

Rust version of bzfquery with no external dependencies. It can be used as a library or form the command line.
Documentation
[package]
name = "bzfquery"
version = "2.0.0"
authors = ["The Noah <thenoahbz@gmail.com>"]
edition = "2018"
categories = ["command-line-utilities"]
description = "Rust version of bzfquery with no external dependencies. It can be used as a library or form the command line."
documentation = "https://docs.rs/bzfquery"
readme = "README.md"
homepage = "https://github.com/BZFlagCommunity/bzfquery.rs"
repository = "https://github.com/BZFlagCommunity/bzfquery.rs"
license-file = "LICENSE"
include = [
  "**/*.rs",
  "Cargo.{toml,lock}",
  "LICENSE",
]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

[[bin]]
name = "bzfquery"
path = "src/main.rs"

[profile.release]
lto = true
codegen-units = 1
opt-level = 3
panic = "abort"

[features]
default = ["color"]
color = []

[dependencies]