Bump version to 0.1.0

This commit is contained in:
CosminPerRam 2023-01-17 02:02:49 +02:00
parent 6ec2b8952c
commit dfe544c6aa
4 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@ use gamedig::games::tf2;
fn main() {
let response = tf2::query("127.0.0.1", None); // None is the default port (which is 27015), could also be Some(27015)
match response {
Err(error) => println!("Couldn't query, error: {error}"),
Err(error) => println!("Couldn't query, error: {}", error),
Ok(r) => println!("{:#?}", r)
}
}