summaryrefslogtreecommitdiffstats
path: root/rfc2822/build.rs
blob: 24051d93bb3f1f39a261f37c38cec6ce8f1496a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
extern crate lalrpop;

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

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