packages feed

yapb-0.1.0: yapb.cabal

cabal-version: 1.12

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

name:           yapb
version:        0.1.0
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 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
      CmdArgs
      ParserTable
      GenLRParserTable
      SampleGrammar
      CodeGenC
      TokenInterface
      Terminal
      CommonParserUtil
      SaveProdRules
      AutomatonType
      LoadAutomaton
      ReadGrammar
  other-modules:
      Paths_yapb
  hs-source-dirs:
      src/gentable/
      src/parserlib/
      src/util/
  build-depends:
      base >=4.7 && <5
    , directory >=1.3.3 && <1.4
    , hashable >=1.3.0 && <1.4
    , process >=1.6.5 && <1.7
    , regex-tdfa >=1.3.1 && <1.4
  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
    , yapb
  default-language: Haskell2010

executable parser-exe
  main-is: Main.hs
  other-modules:
      Lexer
      Parser
      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
    , regex-tdfa
    , yapb
  default-language: Haskell2010

executable polyrpc-exe
  main-is: Main.hs
  other-modules:
      Compile
      Execute
      Lexer
      Parser
      Token
      TypeCheck
      Verify
      BasicLib
      Expr
      Literal
      Location
      Prim
      Type
      CSExpr
      CSType
      Paths_yapb
  hs-source-dirs:
      app/polyrpc
      app/polyrpc/ast
      app/polyrpc/cs
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      aeson >=1.4.7 && <1.5
    , aeson-pretty >=0.8.8 && <0.9
    , base >=4.7 && <5
    , bytestring
    , containers >=0.6.0 && <0.7
    , json >=0.10 && <0.11
    , pretty >=1.1.3 && <1.2
    , prettyprinter >=1.6.1 && <1.7
    , regex-tdfa
    , yapb
  default-language: Haskell2010

executable syncomp-exe
  main-is: Main.hs
  other-modules:
      EmacsServer
      Lexer
      Parser
      Token
      Paths_yapb
  hs-source-dirs:
      app/syntaxcompletion
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , bytestring >=0.10.8 && <0.11
    , network >=3.1.1 && <3.2
    , regex-tdfa
    , 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
    , 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
    , yapb
  default-language: Haskell2010