Skip to content

Commit

Permalink
more docs
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Perkowski <[email protected]>
  • Loading branch information
adamperkowski committed Nov 24, 2024
1 parent ff7b50e commit b8df9ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
🚦 fast new version checker for software releases 🦀<br>
[nvchecker](https://github.com/lilydjwg/nvchecker) rewritten in Rust

![Build Status](https://img.shields.io/github/actions/workflow/status/adamperkowski/nvrs/rust.yml?style=for-the-badge&labelColor=%23a8127d&color=%23336795) ![docs.rs](https://img.shields.io/docsrs/nvrs?style=for-the-badge&labelColor=%23a8127d&color=%23336795)<br>
![GitHub Contributors](https://img.shields.io/github/contributors-anon/adamperkowski/nvrs?style=for-the-badge&labelColor=%23a8127d&color=%23336795) ![GitHub Repo Size](https://img.shields.io/github/repo-size/adamperkowski/nvrs?style=for-the-badge&labelColor=%23a8127d&color=%23336795) ![Repo Created At](https://img.shields.io/github/created-at/adamperkowski/nvrs?style=for-the-badge&labelColor=%23a8127d&color=%23336795)

![banner](/banner.webp)
Expand Down
7 changes: 7 additions & 0 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,31 @@ pub enum Error {
#[error("{0}: version not found")]
NoVersion(String),

/// explicitly specified configuration file not found
#[error("specified config file not found")]
NoConfigSpecified,

/// configuration file not found
#[error("no config found\n{CONFIG_PATHS}")]
NoConfig,

/// no `__config__` in the configuration file
#[error("__config__ not specified\n{EXAMPLE_CONFIG_TABLE}")]
NoConfigTable,

/// no `oldver` or `newver` in `__config__`
#[error("oldver & newver not specified\n{EXAMPLE_CONFIG_TABLE}")]
NoXVer,

/// verfile version != 2
#[error("unsupported verfile version\nplease update your verfiles")]
VerfileVer,

/// package not found in newver
#[error("{0}: package not in newver")]
PkgNotInNewver(String),

/// source / API not found
#[error("source {0} not found")]
SourceNotFound(String),
}
Expand Down

0 comments on commit b8df9ae

Please sign in to comment.