-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·42 lines (36 loc) · 891 Bytes
/
Cargo.toml
File metadata and controls
executable file
·42 lines (36 loc) · 891 Bytes
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
[package]
name = "macos-unifiedlogs"
version = "0.6.0"
edition = "2024"
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 = "8.0.0"
serde_json = "1.0.149"
serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29"
lz4_flex = "0.13.0"
byteorder = "1.5.0"
plist = "1.9.0"
regex = "1.12.3"
base64 = "0.22.1"
chrono = "0.4.44"
walkdir = "2.5.0"
sunlight = "0.1.5"
[dev-dependencies]
chrono = "0.4.44"
criterion = "0.8.2"
anyhow = "1.0.102"
test-case = "3.3"
[[bench]]
name = "high_sierra_benchmark"
harness = false
[[bench]]
name = "big_sur_benchmark"
harness = false
[[bench]]
name = "monterey_benchmark"
harness = false