1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! Rust library wrapping the [Shadertoy REST API](http://shadertoy.com/api) to be able to easily search through and download Shadertoy assets.

#[macro_use]
extern crate serde_derive;

#[macro_use]
extern crate error_chain;

extern crate reqwest;
extern crate serde_json;

mod client;
mod errors;
mod types;

pub use client::*;
pub use errors::*;
pub use types::*;