Skip to content

Commit 39a13f4

Browse files
committed
objdiff-cli diff & report changes, support .splitmeta object section
- Add `objdiff-cli report changes` for diffing two reports - Unify some click-to-highlight logic between CLI and GUI - Load .splitmeta section for extra object metadata (original virtual addr, etc) - More work on objdiff-cli diff
1 parent 2834860 commit 39a13f4

File tree

11 files changed

+970
-358
lines changed

11 files changed

+970
-358
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

objdiff-cli/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@ publish = false
1414
build = "build.rs"
1515

1616
[dependencies]
17-
crossterm = "0.27.0"
1817
anyhow = "1.0.80"
1918
argp = "0.3.0"
19+
crossterm = "0.27.0"
2020
enable-ansi-support = "0.2.1"
2121
log = "0.4.20"
2222
objdiff-core = { path = "../objdiff-core", features = ["all"] }
23+
rayon = "1.8.1"
24+
serde = { version = "1", features = ["derive"] }
25+
serde_json = "1.0.111"
2326
supports-color = "3.0.0"
27+
time = { version = "0.3.31", features = ["formatting", "local-offset"] }
2428
tracing = "0.1.40"
2529
tracing-attributes = "0.1.27"
2630
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
27-
serde = { version = "1", features = ["derive"] }
28-
serde_json = "1.0.111"
29-
rayon = "1.8.1"

0 commit comments

Comments
 (0)