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#![deny(ambiguous_glob_imports)]
5
6#[macro_use] extern crate pdf_derive;
7#[macro_use] extern crate snafu;
8#[macro_use] extern crate log;
9
10#[macro_use]
11pub mod error;
12pub mod object;
13pub mod xref;
14pub mod primitive;
15pub mod file;
16pub mod backend;
17pub mod content;
18pub mod parser;
19pub mod font;
20pub mod any;
21pub mod encoding;
22pub mod build;
23
24// mod content;
25pub mod enc;
26pub mod crypt;
27
28// pub use content::*;
29pub use crate::error::PdfError;