Skip to content

Commit

Permalink
chore: update crate version to 0.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Saurav Sharma <[email protected]>
  • Loading branch information
iamsauravsharma committed Nov 2, 2022
1 parent 27e527e commit e238597
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alpha_vantage"
version = "0.8.1"
version = "0.9.0"
authors = ["Saurav Sharma <[email protected]>"]
homepage = "https://github.com/iamsauravsharma/alpha_vantage"
repository = "https://github.com/iamsauravsharma/alpha_vantage"
Expand All @@ -12,10 +12,10 @@ keywords = ["alphavantage", "currency", "finance", "stock", "exchange"]
categories = ["api-bindings", "web-programming::http-client"]

[dependencies]
async-trait = "0.1.57"
async-trait = "0.1.58"
reqwest = { version = "0.11.12", optional = true }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
surf = { version = "2.3.2", optional = true }
thiserror = "1.0.37"

Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Rust Client library built for accessing [Alphavantage][alphavantage_link] API.
Edit Cargo.toml file to add alpha_vantage as dependencies
```toml
[dependencies]
alpha_vantage = "0.8.1"
alpha_vantage = "0.9.0"
```

__OR__
Expand Down
4 changes: 2 additions & 2 deletions src/vec_trait.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//! Module which contains some common trait implementation for Vec<Data>
//! Module which contains some common trait implementation for `Vec<Data>`
use crate::error::Result;

/// trait which helps for performing some common operation on Vec<Data> which
/// trait which helps for performing some common operation on `Vec<Data>` which
/// have given period
pub trait FindData: IntoIterator {
/// Find a data with a given time as a input return none if no data found
Expand Down

0 comments on commit e238597

Please sign in to comment.