graphannis 0.14.0

This is a prototype for a new backend implementation of the ANNIS linguistic search and visualization system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate lalrpop;

use std::env;

fn main() {
    lalrpop::Configuration::new()
        .set_in_dir("src/annis/db/aql/")
        .set_out_dir(env::var("OUT_DIR").unwrap())
        .process()
        .unwrap();
}