| 1 | //! Read and manipulate WebAssembly metadata |
| 2 | |
| 3 | #![warn (missing_debug_implementations, missing_docs)] |
| 4 | |
| 5 | pub use add_metadata::AddMetadata; |
| 6 | pub use metadata::Metadata; |
| 7 | pub use names::{ComponentNames, ModuleNames}; |
| 8 | pub use oci_annotations::{Author, Description, Homepage, Licenses, Revision, Source, Version}; |
| 9 | pub use payload::Payload; |
| 10 | pub use producers::{Producers, ProducersField}; |
| 11 | |
| 12 | pub(crate) use rewrite::rewrite_wasm; |
| 13 | |
| 14 | mod add_metadata; |
| 15 | mod metadata; |
| 16 | mod names; |
| 17 | mod oci_annotations; |
| 18 | mod payload; |
| 19 | mod producers; |
| 20 | mod rewrite; |
| 21 | |
| 22 | pub(crate) mod utils; |
| 23 | |