Skip to content

Commit

Permalink
removing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyHuynh1 committed Sep 26, 2023
1 parent bb2c2fb commit 08f59c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
10 changes: 0 additions & 10 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ deadqueue = "0.2.4"
governor = "0.6.0"
nonzero_ext = "0.3.0"
glob = "0.3.1"
async-convert = "1.0.0"

[dev-dependencies]
insta = { version = "1.31.0", features = ["filters", "json", "yaml"] }
Expand Down
8 changes: 4 additions & 4 deletions src/api/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@ impl TryFrom<String> for PollInterval {
/// Specificies if we want to scan branches
#[derive(Debug, Clone, PartialEq, Eq, Display, Deserialize, Serialize, new)]
pub enum BranchImportStrategy {
/// Do not scan integration branches
/// Scanning branches is not allowed
Disabled,
/// Scan integration branches
/// Scanning branches is allowed
Enabled,
}

Expand All @@ -279,9 +279,9 @@ impl From<Option<bool>> for BranchImportStrategy {
/// Specifies if the we want to scan tags
#[derive(Debug, Clone, PartialEq, Eq, Display, Deserialize, Serialize, new)]
pub enum TagImportStrategy {
/// Do not scan integration tags
/// Scanning tags is not allowed
Disabled,
/// Scan integration tags
/// Scanning tags is allowed
Enabled,
}

Expand Down

0 comments on commit 08f59c8

Please sign in to comment.