[package]
edition = "2018"
name = "bzfquery"
version = "2.0.0"
authors = ["The Noah <thenoahbz@gmail.com>"]
build = false
include = [
"**/*.rs",
"Cargo.{toml,lock}",
"LICENSE",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust version of bzfquery with no external dependencies. It can be used as a library or form the command line."
homepage = "https://github.com/BZFlagCommunity/bzfquery.rs"
documentation = "https://docs.rs/bzfquery"
readme = "README.md"
categories = ["command-line-utilities"]
license-file = "LICENSE"
repository = "https://github.com/BZFlagCommunity/bzfquery.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[lib]
name = "bzfquery"
path = "src/lib.rs"
[[bin]]
name = "bzfquery"
path = "src/main.rs"
[dependencies]
[features]
color = []
default = ["color"]