reposcrape 0.1.6

Repository scraper for presenting repositories on a personal website
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod metadata;
pub use metadata::Metadata;

mod repo;
pub use repo::Repo;
pub use repo::RepoDetails;

mod project;
pub use project::Project;

pub mod cache;

pub mod query;

#[cfg(test)]
pub mod test;