1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#![feature(async_closure, map_into_keys_values, bool_to_option)]

//! # repo_icons
//! Get icons for a GitHub repository.
//!
//! ## Usage
//! ```rust
//! use repo_icons::RepoIcons;
//!
//! let icons = RepoIcons::load("facebook", "react").await?;
//!
//! for icon in icons {
//!   println("{:?}", icon)
//! }
//! ```

#[macro_use]
extern crate log;
#[macro_use]
extern crate gh_api;
#[macro_use]
extern crate derivative;
#[macro_use]
extern crate serde_with;
#[macro_use]
extern crate futures;

#[macro_use]
mod macros;
mod blacklist;
mod readme;
mod repo_icon;
mod repo_icons;

pub use gh_api::*;
pub use readme::*;
pub use repo_icon::*;
pub use repo_icons::*;