nhl_data
This crate provides convenient access to the NHL API for applications written within Rust. To my knowledge the previous api
has become obsolete and now
is in use. The currently available crates for NHL statistics all seem to use the former. As part of learning Rust I though this would be a good small scale project to test myself on what is within the rust-book. The project is almost a 1 to 1 of Zmalski's nhl api reference guide so thanks to him for documenting all of this. There is some stuff missing from this guide, namely: networking info, stream info and playoff info.
Issues
Currently I do not handle errors, this is the next thing for me to implement. Just try not to call functions with incorrect parameters :)
Design Goals
- Simple: Offer easy use for the user
- Understandable: As this was a learning project I wanted others to be able to understand how the program is structured
Installation
To add to project
Usage
use Puck;
async