Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor!: Various api changes #20

Merged
merged 14 commits into from
Feb 4, 2023
Prev Previous commit
Next Next commit
change ManifestError export
It's now exported from the main crate directly.
ev3nvy committed Feb 4, 2023
commit fa0be8e687b234be3c91a254c40dbcf4f40ff7f3
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
#![deny(missing_debug_implementations)]

pub mod entries;
pub mod error;
mod error;
mod file;
mod parser;

@@ -12,6 +12,7 @@ mod generated {
include!(concat!(env!("OUT_DIR"), "/schema_generated.rs"));
}

pub use crate::error::ManifestError;
pub use crate::file::File;
pub use crate::parser::header::Header;
pub use crate::parser::manifest::ManifestData;