graphannis 0.20.0

This is a prototype for a new backend implementation of the ANNIS linguistic search and visualization system.
Documentation
{
    "version": "0.2.0",
    "configurations": [
        
        {
            "type": "lldb",
            "request": "attach",
            "name": "Attach",
            "pid": "${command:pickMyProcess}", // use ${command:pickProcess} to pick other users' processes
            "sourceLanguages": [
                "rust"
            ]
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Console",
            "program": "${workspaceRoot}/target/debug/annis",
            "args": [
                "data"
            ],
            "cwd": "${workspaceRoot}",
            "terminal": "integrated",
            "env": {
                "RUST_BACKTRACE": "1"
            },
            "sourceLanguages": [
                "rust"
            ]
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug Test",
            "program": "${workspaceRoot}/target/debug/deps/graphannis-95e75e1053f87d13",
            "args": [
                "tiger_doc_name_sort"
            ],
            "cwd": "${workspaceRoot}"
        }
    ]
}