Skip to content

Commit 3846a7d

Browse files
committed
Version v2.0.0
1 parent dcf209a commit 3846a7d

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ strip = "debuginfo"
1313
codegen-units = 1
1414

1515
[workspace.package]
16-
version = "2.0.0-beta.7"
16+
version = "2.0.0"
1717
authors = ["Luke Street <luke@street.dev>"]
1818
edition = "2021"
1919
license = "MIT OR Apache-2.0"

objdiff-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rust-version.workspace = true
66
authors.workspace = true
77
license.workspace = true
88
repository.workspace = true
9-
readme = "../README.md"
9+
readme = "README.md"
1010
description = """
1111
A local diffing tool for decompilation projects.
1212
"""

objdiff-core/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# objdiff-core
2+
3+
objdiff-core contains the core functionality of [objdiff](https://github.com/encounter/objdiff), a tool for comparing object files in decompilation projects. See the main repository for more information.
4+
5+
## Crate feature flags
6+
7+
- **`all`**: Enables all main features.
8+
- **`config`**: Enables objdiff configuration file support.
9+
- **`dwarf`**: Enables extraction of line number information from DWARF debug sections.
10+
- **`mips`**: Enables the MIPS backend powered by [rabbitizer](https://github.com/Decompollaborate/rabbitizer). (Note: C library with Rust bindings)
11+
- **`ppc`**: Enables the PowerPC backend powered by [ppc750cl](https://github.com/encounter/ppc750cl).
12+
- **`x86`**: Enables the x86 backend powered by [iced-x86](https://crates.io/crates/iced-x86).
13+
- **`arm`**: Enables the ARM backend powered by [unarm](https://github.com/AetiasHax/unarm).
14+
- **`bindings`**: Enables serialization and deserialization of objdiff data structures.

objdiff-wasm/package-lock.json

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

objdiff-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "objdiff-wasm",
3-
"version": "2.0.0-beta.10",
3+
"version": "2.0.0",
44
"description": "A local diffing tool for decompilation projects.",
55
"author": {
66
"name": "Luke Street",

0 commit comments

Comments
 (0)