-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
58 lines (53 loc) · 1.54 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
members = [
"crates/rusty-hog-scanner",
]
[package]
name = "rusty_hogs"
version = "1.0.11"
authors = ["Scott Cutler <[email protected]>"]
edition = "2021"
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"]
categories = ["command-line-utilities", "development-tools::build-utils", "filesystem"]
readme = "README.md"
license = "Apache-2.0"
[dependencies]
rusty_hog_scanner = { path = "crates/rusty-hog-scanner" }
tokio = { version = "1", features = ["full"] }
git2 = "0.18"
serde = "1.0"
serde_json = "1.0"
serde_derive = "^1"
clap = "4"
regex = "1"
url = "2"
tempdir = "0.3"
base64 = "0.21"
log = "0.4"
simple_logger = "4.3"
simple-error = "0.3"
chrono = "0.4"
encoding = "0.2"
hex = "0.4"
lambda_runtime = "0.8"
rust-s3 = { version = "0.33", features = ["blocking"] }
google-drive3 = "5.0"
hyper = { version = "^0.14", features = ["client"] }
hyper-rustls = "^0.24"
yup-oauth2 = "^8.3"
walkdir = "2"
zip = "0.6"
tar = "0.4"
flate2 = "1.0"
tempfile = "3.2"
path-clean = "1.0"
anyhow = "1.0"
[dev-dependencies]
escargot = "0.5.0"
[profile.release]
lto = true
codegen-units = 1
[package.metadata.cross.target.x86_64-unknown-linux-musl]
dockerfile = "Dockerfile.lambda"