-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
type: documentation
- Loading branch information
Showing
12 changed files
with
354 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "update-readme" | ||
version = "0.0.0" | ||
authors = ["Casey Rodarmor <casey@rodarmor.com>"] | ||
edition = "2018" | ||
publish = false | ||
|
||
[dependencies] | ||
glob = "0.3.0" | ||
regex = "1.3.3" | ||
structopt = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
use crate::common::*; | ||
|
||
pub(crate) struct Bep { | ||
pub(crate) number: usize, | ||
pub(crate) title: String, | ||
pub(crate) status: Status, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// stdlib | ||
pub(crate) use std::{ | ||
error::Error, | ||
fmt::{self, Display, Formatter}, | ||
fs, | ||
str::FromStr, | ||
}; | ||
|
||
// crates.io | ||
pub(crate) use glob::glob; | ||
pub(crate) use regex::Regex; | ||
pub(crate) use structopt::StructOpt; | ||
|
||
// local | ||
pub(crate) use crate::{bep::Bep, opt::Opt, status::Status}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mod bep; | ||
mod common; | ||
mod opt; | ||
mod status; | ||
|
||
use crate::common::*; | ||
|
||
fn main() -> Result<(), Box<dyn Error>> { | ||
Opt::from_args().run() | ||
} |
Oops, something went wrong.