1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![doc(html_root_url = "https://michiel.github.io/jsonapi-rust/")]

//! This is documentation for the `jsonapi` crate.
//! The crate is meant to be used for serializing, deserializing and validating JSON-API requests and responses.
//!

extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;

extern crate queryst;

pub mod api;
pub mod query;