summaryrefslogtreecommitdiffstats
path: root/vendor/object/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/object/README.md')
-rw-r--r--vendor/object/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/object/README.md b/vendor/object/README.md
index 36cbfb8f0..804cc7c1c 100644
--- a/vendor/object/README.md
+++ b/vendor/object/README.md
@@ -1,8 +1,8 @@
# `object`
The `object` crate provides a unified interface to working with object files
-across platforms. It supports reading object files and executable files,
-and writing COFF/ELF/Mach-O object files and ELF/PE executable files.
+across platforms. It supports reading relocatable object files and executable files,
+and writing COFF/ELF/Mach-O/XCOFF relocatable object files and ELF/PE executable files.
For reading files, it provides multiple levels of support:
@@ -11,7 +11,7 @@ For reading files, it provides multiple levels of support:
* a higher level unified API for accessing common features of object files, such
as sections and symbols ([example](crates/examples/src/objdump.rs))
-Supported file formats: ELF, Mach-O, Windows PE/COFF, Wasm, and Unix archive.
+Supported file formats: ELF, Mach-O, Windows PE/COFF, Wasm, XCOFF, and Unix archive.
## Example for unified read API
```rust