-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
71 lines (63 loc) · 1.46 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "ntdsextract2"
version = "1.4.7"
edition = "2021"
description = "Display contents of Active Directory database files (ntds.dit)"
repository = "https://github.com/janstarke/ntdsextract2"
authors = ["Jan Starke <jan.starke@posteo.de>"]
license = "GPL-3.0"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["cli", "forensics", "security"]
rust-version = "1.81"
[lib]
name="libntdsextract2"
path="src/lib.rs"
[[bin]]
name="ntdsextract2"
path="src/main.rs"
[dependencies]
log = {version = "0.4", features = [ "release_max_level_info" ]}
concat-idents = "1"
simplelog = "0.12"
anyhow = "1.0"
clap = "4"
clap-verbosity-flag = "2.0.0"
maplit = "1.0.2"
byteorder = "1.4.3"
hex = "0.4"
chrono = "0.4"
bitflags = {version="2", features=["serde"] }
strum = { version = "0", features = ["derive", "phf"] }
num-traits = "0.2.15"
num-derive = "0.4.0"
thiserror = "2"
bodyfile = "0.1.4"
hashbrown = "0"
libesedb = "0.2.5"
#libesedb = {path="../rust-libesedb"}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.1"
term-table = "1.3.2"
termsize = "0.1"
termtree = "0"
regex = "1.6"
lazy_static = "1.4"
lazy-regex = "3"
getset = "0"
cap = "0.1.2"
indicatif = "0.17"
uuid = {version="1.6", features=["serde", "v4"]}
flow-record = "0.4.9"
sddl = "0.0.14"
base64 = "0.22.1"
#sddl = {path="../sddl"}
[dev-dependencies]
assert_cmd = "2"
serde_test = "1"
[build-dependencies]
lazy-regex = "3"
hex = "0"
byteorder = "1"
convert_case = "0"