Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ members = [

[package]
name = "rusty_hogs"
version = "1.0.11"
version = "1.0.12"
authors = ["Scott Cutler <scutler@newrelic.com>"]
edition = "2021"
edition = "2024"
description = "This project provides a set of scanners that will use regular expressions to try and detect the presence of sensitive information such as API keys, passwords, and personal information. It includes a set of regular expressions by default, but will also accept a JSON object containing your custom regular expressions."
homepage = "https://github.com/newrelic/rusty-hog"
keywords = ["secret", "scanner", "regex", "rusty", "hog"]
Expand Down
2 changes: 1 addition & 1 deletion src/bin/ankamali_hog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use std::path::Path;
#[tokio::main]
async fn main() {
let matches = Command::new("ankamali_hog")
.version("1.0.11")
.version("1.0.12")
.author("Scott Cutler <scutler@newrelic.com>")
.about("Google Drive secret scanner in Rust.")
.arg(
Expand Down
Loading