Texas/
lib.rs

1use std::error::Error;
2
3/// Bunch of From<>s, they feel like they might be useful
4pub mod casting;
5
6/// Latex commands/macros. Haven't found this in any other crate.
7pub mod commands;
8
9/// Standard Latex things.
10pub mod component;
11
12/// Packages and the overall latex layout.
13pub mod document;
14
15/// Custom error type.
16pub mod errors;
17
18/// Really helpful stuff.
19pub mod macros;
20
21/// Ubiquitous.
22pub mod traits;
23
24/// 
25#[cfg(test)]
26mod tests;
27
28pub use traits::*;
29pub use commands::*;
30pub use component::*;
31pub use document::*;
32pub use errors::*;
33
34type Res<T> = Result<T, Box<dyn Error>>;
35type Null = Res<()>;