summaryrefslogtreecommitdiffstats
path: root/src/openpgp/mod.rs
blob: 683b8448719a1c807ce74d04237e5202e722c381 (plain)
1
2
3
4
5
6
7
8
9
// Hack so that the file doesn't have to be named mod.rs.
// Unfortunately, it seems that putting 'pub mod xxx' declarations in
// an included file confuses rust (it looks for the module in the
// wrong place).  Hence, that here as well.

pub mod parse;
pub mod types;

include!("openpgp.rs");