-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Features: * Implement core::error::Error for ParsingError accessible via a new non-default "nightly" cargo feature * Add abi constants for note descriptor types (n_type) * Add C-style struct definitions for various abi structs (Elf[32|64]_Ehdr etc). These aren't used by the parser, but are useful definitions for folks wanting to manually muck with elf bytes. Bug Fixes: * Fix an 'attempt to shift right with overflow' panic in the GnuHashTable if nshift is wider than the bloom filter word size Misc Improvements: * Add doc comments for EM_* abi constants * Tweak formatting and update language for various doc comments
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "elf" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
authors = ["Christopher Cole <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/cole14/rust-elf/" | ||
|