quiverquant 0.2.2

A crate for accessing the QuiverQuant API.
Documentation
/// Data Types representing data retrieved from QuiverQuant's API
///
/// We use Serde to deserialize these from JSON.
/// Names may not always match field names, we use Serde's `alias` tag to reduce the number of
/// DataTypes needed to match the entire API's data schema.

use serde::{Deserialize, Serialize};
use crate::Ticker;

type Date = chrono::NaiveDate;

pub mod congress;
pub use congress::*;

pub mod gov_contracts;
pub use gov_contracts::*;

pub mod corp_lobbying;
pub use corp_lobbying::*;