| Crates.io | quotes |
| lib.rs | quotes |
| version | 0.1.2 |
| created_at | 2020-12-17 17:07:21.685318+00 |
| updated_at | 2020-12-19 07:33:17.012957+00 |
| description | Request tick、stock_list msgs |
| homepage | |
| repository | https://github.com/YangzhenZhao/quotes |
| max_upload_size | |
| id | 323964 |
| size | 20,237 |
[dependencies]
quotes = "0.1.2"
#[async_std::main]
async fn main() {
match quotes::stock_list().await {
Ok(l) => println!("len = {}", l.len()),
Err(e) => println!("err = {}", e),
}
}