Minimal lazy nonstrict CUE sheet parsing library written in pure java.
This library is created for another internal big project. But there is a possibility that this library might be needed by someone.
At the moment this library not available yet on maven or bunjlabs repositories but will became after fixing most critical bugs.
If you want use this library just clone and import it in your IDE.
API in this library is extremely simple:
CueLoader cueLoader = new CueLoader(new File("meta.cue"));
CueSheet load = cueLoader.load();
CueSheet is a POJO object. Its structure can be easly to understand with sources.