sequoia-openpgp 0.5.0

OpenPGP data types and associated machinery
1
2
3
4
5
6
7
8
9
10
11
12
extern crate lalrpop;

// Rerun if any of these files change:
#[allow(dead_code)]
const SOURCE: [ &'static str; 2 ]
    = [ include_str!("src/message/grammar.lalrpop"),
        include_str!("src/tpk/grammar.lalrpop"),
      ];

fn main() {
    lalrpop::process_root().unwrap();
}