git-dumper/Cargo.toml

24 строки
671 B
TOML
Исходник Обычный вид История

2022-09-17 16:51:44 +03:00
[package]
name = "git-dumper"
version = "0.1.0"
edition = "2021"
description = "A tool to dump exposed .git directories"
2022-09-21 19:33:35 +03:00
license = "MIT"
repository = "https://github.com/HoLLy-HaCKeR/git-dumper"
keywords = ["git", "security", "scrapers"]
categories = ["command-line-utilities"]
exclude = [ "test-data" ]
2022-09-17 16:51:44 +03:00
[profile.release]
lto = true
2022-09-17 16:51:44 +03:00
[dependencies]
anyhow = "1.0.65"
clap = { version = "4.2.5", features = ["derive"] }
hyper = { version = "0.14", features = ["http1", "http2", "client", "runtime"] }
hyper-tls = "0.5.0"
2022-09-17 16:51:44 +03:00
lazy_static = "1.4.0"
miniz_oxide = "0.6.2"
regex = "1.6"
tokio = { version = "1.21", features = ["net", "sync", "rt", "rt-multi-thread", "macros"] }