packages feed

gll-0.1.0.1: gll.cabal

-- Initial haskell-gll.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                gll
version:             0.1.0.1
synopsis:            GLL parser with simple combinator interface 
license:             BSD3
license-file:        LICENSE
author:              L. Thomas van Binsbergen
maintainer:          ltvanbinsbergen@acm.org
category:            Compilers
build-type:          Simple 
cabal-version:       >=1.8
tested-with:         GHC == 7.10.1

library
    hs-source-dirs  :   src
    build-depends   :     base >=4.5 && <= 4.8.0.0
                        , containers >= 0.4
                        , array
    exposed-modules :   GLL.Combinators.Combinators
    other-modules   :   GLL.Types.Abstract
                        , GLL.Types.Grammar
                        , GLL.Machines.RGLL
                        , GLL.Common