Skip to content

Commit

Permalink
Merge pull request #40 from 34N0/release
Browse files Browse the repository at this point in the history
fix: set ArCliResult to pub
  • Loading branch information
34N0 authored Jan 19, 2024
2 parents 0c48ac1 + 9a78db3 commit 54be5c7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = [ "crates/lib", "crates/cli", "crates/util", "crates/xtask-test-integr

[workspace.package]
edition = "2021"
version = "0.9.1"
version = "0.9.2"
description = "The AuthRamp PAM module provides an account lockout mechanism based on the number of authentication failures."
authors = ["34n0 <34n0@immerda.ch>"]
license = "GPL-3.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const BANNER: &str = r"
by 34n0@immerda.ch";

#[derive(Debug)]
struct ArCliError {
pub struct ArCliError {
message: String,
}

Expand All @@ -74,7 +74,7 @@ impl fmt::Display for ArCliError {
}

#[derive(Debug)]
struct ArCliSuccess {
pub struct ArCliSuccess {
message: String,
}

Expand All @@ -85,7 +85,7 @@ impl fmt::Display for ArCliSuccess {
}

#[derive(Debug)]
struct ArCliInfo {
pub struct ArCliInfo {
message: String,
}

Expand All @@ -96,7 +96,7 @@ impl fmt::Display for ArCliInfo {
}

#[derive(Debug)]
enum ArCliResult {
pub enum ArCliResult {
Success(Option<ArCliSuccess>),
Info(ArCliInfo),
Error(ArCliError),
Expand Down

0 comments on commit 54be5c7

Please sign in to comment.