Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bzflagcommunity/bzfquery.rs
Rust version of bzfquery with no external dependencies. It can be used as a library or from the command line.
https://github.com/bzflagcommunity/bzfquery.rs
bzflag bzflag-server cli library networking no-dependencies rust rust-lang rust-library tool
Last synced: about 1 month ago
JSON representation
Rust version of bzfquery with no external dependencies. It can be used as a library or from the command line.
- Host: GitHub
- URL: https://github.com/bzflagcommunity/bzfquery.rs
- Owner: BZFlagCommunity
- License: mit
- Created: 2021-01-25T18:48:58.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T00:50:01.000Z (3 months ago)
- Last Synced: 2024-10-12T13:23:03.485Z (about 1 month ago)
- Topics: bzflag, bzflag-server, cli, library, networking, no-dependencies, rust, rust-lang, rust-library, tool
- Language: Rust
- Homepage: https://crates.io/crates/bzfquery
- Size: 37.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bzfquery.rs
[![Crates.io](https://img.shields.io/crates/v/bzfquery)](https://crates.io/crates/bzfquery)
[![GitHub release](https://img.shields.io/github/v/release/BZFlagCommunity/bzfquery.rs?include_prereleases&sort=semver)](https://github.com/BZFlagCommunity/bzfquery.rs/releases)
[![GitHub license](https://img.shields.io/github/license/BZFlagCommunity/bzfquery.rs)](LICENSE)
[![CI](https://github.com/BZFlagCommunity/bzfquery.rs/workflows/CI/badge.svg)](https://github.com/BZFlagCommunity/bzfquery.rs/actions?query=workflow%3ACI)
[![Docs](https://img.shields.io/badge/docs-docs.rs-blue)](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);
```