-
Notifications
You must be signed in to change notification settings - Fork 92
/
Cargo.toml
37 lines (35 loc) · 1.11 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
[package]
authors = ["g0h4n <g0h4n_0@protonmail.com>"]
name = "rusthound"
description = "Active Directory data collector for Bloodhound written in rust."
keywords = ["bloodhound", "pentest", "ldap", "tokio", "async"]
repository = "https://github.com/OPENCYBER-FR/RustHound"
homepage = "https://github.com/OPENCYBER-FR/RustHound"
documentation = "https://docs.rs/rusthound/"
version = "1.1.69"
edition = "2018"
license = "MIT"
readme = "README.md"
[dependencies]
tokio = "1.1"
clap = "4.0"
nom7 = { version="7.0", package="nom" }
colored = "2"
chrono = "0.4"
bitflags = "1.0"
regex = "1"
env_logger = "0.10"
log = "0.4"
lazy_static = "1.4.0"
indicatif = "0.17"
x509-parser = "0.15"
trust-dns-resolver = "0.22"
serde_json = { version = "1.0.89", features = ["preserve_order"] }
zip= { version = "0.6.3", default-features = false }
rpassword = "7.2"
ldap3 = { version = "0.11.3", default-features = false }
winreg = { version = "0.50", optional = true }
[features]
noargs = ["winreg"] # Only available for Windows
nogssapi = ["ldap3/tls-native"] # Used for linux_musl armv7 and macos compilation
default = ["ldap3/tls-rustls","ldap3/gssapi"]