packages feed

yapb-0.2.3: yapb.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
--
-- hash: f77819b422fe4bf504a61917dc5fbf6875bc35d76c7f3ea16707505b9f6134ed

name:           yapb
version:        0.2.3
synopsis:       Yet Another Parser Builder (YAPB)
description:    A programmable LALR(1) parser builder system. Please see the README on GitHub at <https://github.com/kwanghoon/yapb#readme>
category:       parser builder
homepage:       https://github.com/kwanghoon/yapb#readme
bug-reports:    https://github.com/kwanghoon/yapb/issues
author:         Kwanghoon Choi
maintainer:     lazyswamp@gmail.com
copyright:      2020-2021 Kwanghoon Choi
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/kwanghoon/yapb

library
  exposed-modules:
      CFG
      Attrs
      CmdArgs
      ParserTable
      GenLRParserTable
      SampleGrammar
      CodeGenC
      TokenInterface
      Terminal
      CommonParserUtil
      SaveProdRules
      AutomatonType
      LoadAutomaton
      ReadGrammar
      EmacsServer
      SynCompInterface
      Config
      SynCompAlgoBU
      SynCompAlgoBUTree
      SynCompAlgoBUTreeNested
      SynCompAlgoTD
      SynCompAlgoPEPM
      SynCompAlgoUtil
      SynCompAlgorithm
  other-modules:
      Paths_yapb
  hs-source-dirs:
      src/gentable/
      src/parserlib/
      src/parserlib/algo
      src/syncomplib
      src/util/
      src/config/
  build-depends:
      base >=4.7 && <5
    , bytestring >=0.10.8 && <0.11
    , deepseq >=1.4.4.0
    , directory >=1.3.3 && <1.4
    , hashable >=1.3.0 && <1.4
    , hspec
    , mtl
    , network >=3.1.1 && <3.2
    , process >=1.6.5 && <1.7
    , regex-tdfa >=1.3.1 && <1.4
    , timeit >=2.0
    , transformers
  default-language: Haskell2010

executable ambiguous-exe
  main-is: Main.hs
  other-modules:
      Lexer
      Parser
      ParserSpec
      Run
      Token
      Expr
      Paths_yapb
  hs-source-dirs:
      app/ambiguous
      app/ambiguous/ast
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , regex-tdfa
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010

executable conv-exe
  main-is: Main.hs
  other-modules:
      Paths_yapb
  hs-source-dirs:
      app/conv
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010

executable error-exe
  main-is: Main.hs
  other-modules:
      Lexer
      Parser
      ParserSpec
      Run
      Token
      Expr
      Paths_yapb
  hs-source-dirs:
      app/error
      app/error/ast
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , regex-tdfa
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010

executable parser-exe
  main-is: Main.hs
  other-modules:
      Lexer
      Parser
      ParserSpec
      Run
      Token
      Expr
      Paths_yapb
  hs-source-dirs:
      app/parser
      app/parser/ast
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , regex-tdfa
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010

executable syncomp-exe
  main-is: Main.hs
  other-modules:
      Lexer
      Parser
      SyntaxCompletion
      SyntaxCompletionSpec
      Token
      Expr
      Paths_yapb
  hs-source-dirs:
      app/syntaxcompletion
      app/syntaxcompletion/ast
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , regex-tdfa
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010

executable yapb-exe
  main-is: Main.hs
  other-modules:
      Paths_yapb
  hs-source-dirs:
      app/yapb
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010

test-suite yapb-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_yapb
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , deepseq >=1.4.4.0
    , hspec
    , mtl
    , process
    , timeit >=2.0
    , transformers
    , yapb
  default-language: Haskell2010