acroform_pdf/
lib.rs

1#![allow(non_camel_case_types)]  /* TODO temporary becaues of pdf_derive */
2#![allow(unused_doc_comments)] // /* TODO temporary because of err.rs */
3#![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
19// Stream encoding/decoding
20pub mod enc;
21
22pub use crate::error::PdfError;