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 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 content;
17pub mod parser;
18pub mod font;
19pub mod any;
20pub mod encoding;
21pub mod build;
22
23// mod content;
24pub mod enc;
25pub mod crypt;
26
27// pub use content::*;
28pub use crate::error::PdfError;