Skip to content

Commit c951a6c

Browse files
fixing vuln in http 0.1.19, updating to v1.0.1
1 parent 4d7e84c commit c951a6c

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rusty_hogs"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Scott Cutler <scutler@newrelic.com>"]
55
edition = "2018"
66
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."

src/aws_scanning.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ impl Default for S3Scanner {
143143
fn default() -> Self {
144144
Self::new()
145145
}
146-
}
146+
}

src/bin/ankamali_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
4444
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
4545
fn main() {
4646
let matches = clap_app!(ankamali_hog =>
47-
(version: "1.0.0")
47+
(version: "1.0.1")
4848
(author: "Scott Cutler <scutler@newrelic.com>")
4949
(about: "Google Drive secret scanner in Rust.")
5050
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/berkshire_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use std::iter::FromIterator;
4545
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
4646
fn main() {
4747
let matches = clap_app!(berkshire_hog =>
48-
(version: "1.0.0")
48+
(version: "1.0.1")
4949
(author: "Scott Cutler <scutler@newrelic.com>")
5050
(about: "S3 secret hunter in Rust. Avoid bandwidth costs, run this within a VPC!")
5151
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/choctaw_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
4848
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
4949
fn main() {
5050
let matches = clap_app!(choctaw_hog =>
51-
(version: "1.0.0")
51+
(version: "1.0.1")
5252
(author: "Scott Cutler <scutler@newrelic.com>")
5353
(about: "Git secret scanner in Rust")
5454
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file")

src/git_scanning.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,4 +545,4 @@ impl Default for GitScanner {
545545
fn default() -> Self {
546546
Self::new()
547547
}
548-
}
548+
}

src/google_scanning.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,4 +309,4 @@ impl Default for GDriveScanner {
309309
fn default() -> Self {
310310
Self::new()
311311
}
312-
}
312+
}

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,4 +600,4 @@ impl Default for SecretScannerBuilder {
600600
fn default() -> Self {
601601
Self::new()
602602
}
603-
}
603+
}

0 commit comments

Comments
 (0)