-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 791 Bytes
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
[package]
name = "auth-log-scraper"
version = "0.1.0"
edition = "2024"
description = "Scrape auth logs for usernames that may be accidentally entered passwords"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/bcoles/auth-log-scraper"
repository = "https://github.com/bcoles/auth-log-scraper"
keywords = ["security", "logging", "authentication", "password", "audit"]
categories = ["security", "system-utilities"]
exclude = [".github/"]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
flate2 = "1"
glob = "0.3"
indicatif = "0.17"
rayon = "1"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
walkdir = "2"
[build-dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
clap_mangen = "0.2"