forked from mandiant/macos-UnifiedLogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·41 lines (35 loc) · 870 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
35
36
37
38
39
40
41
[package]
name = "macos-unifiedlogs"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mandiant/macos-unifiedlogs"
description = "A library to help parse macOS UnifiedLogs"
keywords = ["forensics", "macOS", "unifiedlog"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = "7.1.3"
serde_json = "1.0.133"
serde = { version = "1.0.215", features = ["derive"] }
log = "0.4.22"
lz4_flex = "0.11.3"
byteorder = "1.5.0"
plist = "1.7.0"
regex = "1.11.1"
base64 = "0.22.1"
chrono = "0.4.38"
[dev-dependencies]
simplelog = "0.12.2"
csv = "1.3.1"
chrono = "0.4.38"
criterion = "0.5.1"
anyhow = "1.0.94"
[[bench]]
name = "high_sierra_benchmark"
harness = false
[[bench]]
name = "big_sur_benchmark"
harness = false
[[bench]]
name = "monterey_benchmark"
harness = false