Skip to content

Commit

Permalink
Merge pull request #26 from mandiant/iterator-parser
Browse files Browse the repository at this point in the history
Add initial UnifiedLog Iterator
  • Loading branch information
puffyCid authored Nov 13, 2024
2 parents b175182 + 11dfd47 commit e8c3857
Show file tree
Hide file tree
Showing 9 changed files with 698 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"

[dependencies]
nom = "7.1.3"
serde_json = "1.0.127"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.128"
serde = { version = "1.0.210", features = ["derive"] }
log = "0.4.22"
lz4_flex = "0.11.3"
byteorder = "1.5.0"
Expand Down
5 changes: 3 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
members = [
"unifiedlog_parser",
"unifiedlog_parser_json",
"parse_tracev3",
]
"parse_tracev3",
"unifiedlog_iterator",
]
14 changes: 14 additions & 0 deletions examples/unifiedlog_iterator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "unifiedlog_iterator"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
simplelog = "0.12.2"
csv = "1.3.0"
chrono = "0.4.38"
log = "0.4.22"
macos-unifiedlogs = {path = "../../"}
clap = {version = "4.5.18", features = ["derive"]}
Loading

0 comments on commit e8c3857

Please sign in to comment.