]> git.proxmox.com Git - rustc.git/blame - vendor/object/src/read/elf/mod.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / vendor / object / src / read / elf / mod.rs
CommitLineData
17df50a5
XL
1//! Support for reading ELF files.
2//!
3//! Defines traits to abstract over the difference between ELF32/ELF64,
4//! and implements read functionality in terms of these traits.
5//!
6//! Also provides `ElfFile` and related types which implement the `Object` trait.
7
8mod file;
9pub use file::*;
10
11mod segment;
12pub use segment::*;
13
14mod section;
15pub use section::*;
16
17mod symbol;
18pub use symbol::*;
19
20mod relocation;
21pub use relocation::*;
22
23mod comdat;
24pub use comdat::*;
25
26mod dynamic;
27pub use dynamic::*;
28
29mod compression;
30pub use compression::*;
31
32mod note;
33pub use note::*;
136023e0
XL
34
35mod hash;
36pub use hash::*;
37
38mod version;
39pub use version::*;