docs.rs failed to build gdl-parser-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: gdl-parser-0.0.8

GDL Parser

This is a parser for GDL (game description language). GDL is a subset of KIF (knowledge interchange format). This parser focuses on GDL and not KIF for the purpose of GGP (general game playing). It converts a GDL string to an AST but does not do any semantic analysis on this AST. It makes use of the rust-peg parser generator.

You can find the specification for GDL here and the specification for KIF here.

Usage

extern crate gdl_parser;
use gdl_parser::parse;

println!("{:?}", parse("(role red) (role black)"));