-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (31 loc) · 1010 Bytes
/
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
[package]
name = "sherlock"
description = "🔍 Hunt down social media accounts by username across social networks"
authors = ["Johannes Naylor <[email protected]>"]
license = "MIT"
version = "3.0.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/jonaylor89/sherlock-rs"
keywords = ["osint", "reconnaissance", "information", "gathering"]
homepage = "https://sherlockproject.xyz/"
[dependencies]
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
color-eyre = "0.6.3"
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1.0.208", features = ["derive"] }
tokio-macros = "2.4.0"
futures = "0.3.30"
regex = "1.10.6"
tokio-stream = "0.1.15"
thiserror = "1.0.63"
serde_json = "1.0.125"
serde_path_to_error = "0.1.16"
fancy-regex = "0.13.0"
clap = { version = "4.5.16", features = ["derive"] }
colored = "2.1.0"
rust_xlsxwriter = { version = "0.73.0", optional = true }
open = "5.3.0"
rand = "0.8.5"
[features]
xlsx = ["dep:rust_xlsxwriter"]