Change the parse module to be internal to the crate

There's no current need for users of this elf crate to implement their own
parsers, so this doesn't need to be public and clutter the public interface.
This commit is contained in:
Christopher Cole 2022-10-10 19:41:52 -07:00
parent ae7103c9d4
commit d31168c9eb
No known key found for this signature in database
GPG Key ID: 0AC856975983E9DB

View File

@ -4,8 +4,8 @@ pub mod gabi;
pub mod segment;
pub mod section;
pub mod symbol;
pub mod parse;
mod parse;
mod utils;
mod string_table;