Crates.io | valve-server-query |
lib.rs | valve-server-query |
version | 0.4.9 |
source | src |
created_at | 2022-06-12 04:04:37.728977 |
updated_at | 2022-12-09 01:46:31.002172 |
description | This package allows you to access the data provided by Valve's Server Query protocol. |
homepage | https://github.com/AceofSpades5757/valve-server-query |
repository | https://github.com/AceofSpades5757/valve-server-query |
max_upload_size | |
id | 604365 |
size | 55,060 |
Crate allowing access to Valve's Server Query protocol.
Want to use it from Python? You can do that! Want to us it from JavaScript? You can do that too!
Rust is an accessible language that can be utilized in most any scenario, and become more accessible each day!
In your Cargo.toml
file.
[dependencies]
valve-server-query = "0.4"
Or, using the cargo add
subcommand.
cargo add valve-server-query
use valve_server_query::Server;
let server = Server::new("127.0.0.1:12345").expect("Connect to dedicated server running Valve game");
let info = server.info().expect("Get general server information");
let players = server.players().expect("Get server player information");
let rules = server.rules().expect("Get server rules");
This will panic in a Wasm environment (target = "wasm32"
) due to UDP sockets not being supported.
Pull requests are welcome.
Requests for additional features are welcome: Create a GitHub Issue.
If you would like additional content, such as the abiltiy to query the Master Server Query Protocol, then feel free to contact me or create a GitHub Issue.
Feel free to create an issue if you experience any problems with this package.