# bzfquery.rs
[](https://crates.io/crates/bzfquery)
[](https://github.com/BZFlagCommunity/bzfquery.rs/releases)
[](LICENSE)
[](https://github.com/BZFlagCommunity/bzfquery.rs/actions?query=workflow%3ACI)
[](https://docs.rs/bzfquery)
Rust version of bzfquery with no external dependencies. It can be used as a library or from the command line.
# CLI
```sh
cargo install bzfquery
```
Usage: `bzfquery host[:port]`
# Library
```rust
use bzfquery::*;
let query = query("bzflag.allejo.io", 5130);
println!("{}", query);
```