-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
178 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ datasets. | |
# Usage | ||
|
||
```rust | ||
extern crate quandl; | ||
crate quandl; | ||
|
||
use quandl::{Quandl, NaiveDate}; | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,38 @@ | ||
#![deny(missing_docs, | ||
missing_debug_implementations, | ||
trivial_casts, | ||
trivial_numeric_casts, | ||
unsafe_code, | ||
unstable_features, | ||
unused_import_braces, | ||
unused_qualifications)] | ||
#![deny( | ||
missing_docs, | ||
missing_debug_implementations, | ||
trivial_casts, | ||
trivial_numeric_casts, | ||
unsafe_code, | ||
unstable_features, | ||
unused_import_braces, | ||
unused_qualifications | ||
)] | ||
|
||
#![cfg_attr(all(test, feature = "nightly"), feature(test))] | ||
#![cfg_attr(test, deny(warnings))] | ||
#![cfg_attr(feature = "clippy", allow(unstable_features))] | ||
#![cfg_attr(feature = "clippy", feature(plugin))] | ||
#![cfg_attr(feature = "clippy", plugin(clippy))] | ||
#![cfg_attr(feature = "clippy", deny(clippy))] | ||
#![cfg_attr(feature = "cargo-clippy", allow(unstable_features))] | ||
#![deny(clippy::all)] | ||
|
||
//! Library to fetch data from the [Quandl v3 API](https://www.quandl.com/docs/api) | ||
//! for financial and economic datasets. | ||
extern crate curl; | ||
extern crate serde_json; | ||
extern crate url; | ||
extern crate hyper; | ||
#[macro_use] extern crate quick_error; | ||
extern crate serde_json; | ||
extern crate tokio; | ||
#[macro_use] | ||
extern crate quick_error; | ||
extern crate chrono; | ||
|
||
pub use quandl::Quandl; | ||
pub use quandl_request::*; | ||
pub use error::{Error, Result}; | ||
pub use serde_json::Value as JsonValue; | ||
pub use chrono::NaiveDate as NaiveDate; | ||
pub use crate::chrono::NaiveDate; | ||
pub use crate::error::{Error, Result}; | ||
pub use crate::quandl::Quandl; | ||
pub use crate::quandl_request::*; | ||
pub use crate::serde_json::Value as JsonValue; | ||
|
||
/// Errors | ||
pub mod error; | ||
/// Handles common information across requests. | ||
pub mod quandl; | ||
/// Handles building and sending requests to Quandl | ||
pub mod quandl_request; | ||
/// Errors | ||
pub mod error; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.