1#![allow(non_camel_case_types)] #![allow(unused_doc_comments)] #![allow(clippy::len_zero, clippy::should_implement_trait, clippy::manual_map, clippy::from_over_into)]
4
5#[macro_use] extern crate acroform_pdf_derive as pdf_derive;
6#[macro_use] extern crate snafu;
7#[macro_use] extern crate log;
8
9#[macro_use]
10pub mod error;
11pub mod object;
12pub mod xref;
13pub mod primitive;
14pub mod file;
15pub mod backend;
16pub mod parser;
17pub mod any;
18
19pub mod enc;
21
22pub use crate::error::PdfError;