rsreddit 0.1.3

Lightweight Reddit API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::needless_doctest_main)]
#![allow(dead_code)]

#[macro_use]
extern crate log;
#[macro_use]
extern crate failure;

mod callback_server;
pub mod client;
mod curl_utils;
pub mod model;
pub mod oauth2;
pub mod util;

static VERSION: &str = "0.1.3";