cabal-version: 2.4 name: little-earley version: 0.2.0.0 x-revision: 1 synopsis: Simple implementation of Earley parsing description: A little Earley parser. . Also some utilities for visualizing parse trees. . See README. bug-reports: https://gitlab.com/lysxia/little-earley/-/issues license: MIT license-file: LICENSE author: Li-yao Xia maintainer: lysxia@gmail.com copyright: 2021 Li-yao Xia category: Parsing extra-source-files: CHANGELOG.md, README.md library exposed-modules: Little.Earley Little.Earley.Examples Little.Earley.Internal.Core Little.Earley.Internal.Tree Little.Earley.Internal.Render Little.Earley.Internal.Pretty Little.Earley.Internal.PrettyOrphan Little.Earley.Internal.Result build-depends: mtl, containers, base >=4.14.1.0 && < 4.17 ghc-options: -Wall hs-source-dirs: src default-language: Haskell2010 test-suite earley-parsing-tests main-is: tests.hs build-depends: containers, little-earley, mtl, tasty, tasty-hunit, base ghc-options: -Wall hs-source-dirs: test default-language: Haskell2010 type: exitcode-stdio-1.0 source-repository head type: git location: https://gitlab.com/lysxia/little-earley