Simple Stock CLI tool, written in Rust, to pull quote data from Finnhub.io for a user provided stock symbol and display that information to the screen.
- Get an API Token from finnhub
- Store the API token as environment variable
export FINNHUB_API_TOKEN=12345678
- Use serde to rename finnhub fields
- [] Improve Error Handling for User Input
- Improve Error Handling when making API call
- [] Improve formatting when displaying quote information
- Leverage .query() for building url query params instead of format macro
- [] Improve usage documentation