A safe and easy to use stock quote library. Based on Yahoo Finance.
Usage:
```rust
async fn main() -> Result<(), Box> { let result = stockquote::get("IBM").await?; println!("{:?}", result); Ok(()) } ```