-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·47 lines (40 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
executable file
·47 lines (40 loc) · 1.07 KB
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
[package]
name = "ironeye"
version = "2.5.0"
edition = "2021"
[lib]
name = "ironeye"
path = "src/lib.rs"
[dependencies]
dialoguer = "0.10"
clap = { version = "4.3", features = ["derive"] }
chrono = "0.4"
rustyline = "11.0.0"
rusqlite = { version = "0.31", features = ["bundled"] }
base64 = "0.21"
hex = "0.4"
rand = "0.8"
fastrand = "2.0"
byteorder = "1.4"
log = "0.4"
env_logger = "0.10"
csv = "1.1"
uuid = { version = "1", features = ["v4"] }
x509-parser = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["rt", "net"] }
# Kerberos attack library
cerbero_lib = { path = "lib/cerbero_lib", default-features = false }
kerberos_crypto = "0.3"
ms_pac = "0.0.4"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(target_os = "linux")'.dependencies]
ldap3 = { version = "0.11", features = ["gssapi"] }
native-tls = "0.2"
[target.'cfg(target_os = "windows")'.dependencies]
ldap3 = { version = "0.11", features = ["gssapi"] }
native-tls = "0.2"
[target.'cfg(target_os = "macos")'.dependencies]
ldap3 = { version = "0.11" }