packages feed

smt2-parser-0.1.0.0: smt2-parser.cabal

cabal-version: 1.12

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

name:           smt2-parser
version:        0.1.0.0
synopsis:       A Haskell parser for SMT-LIB version 2.6
description:    Please see the README on GitHub at <https://github.com/crvdgc/smt2-parser#readme>
category:       SMT, Formal Languages, Language
homepage:       https://github.com/crvdgc/smt2-parser#readme
bug-reports:    https://github.com/crvdgc/smt2-parser/issues
author:         crvdgc
maintainer:     2502project@gmail.com
copyright:      2020 crvdgc
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/crvdgc/smt2-parser

library
  exposed-modules:
      Language.SMT2.Parser
      Language.SMT2.Syntax
  other-modules:
      Paths_smt2_parser
  hs-source-dirs:
      src
  build-depends:
      base >=4.13.0 && <4.14
    , parsec >=3.1.14 && <3.2
    , text >=1.2.4 && <1.3
  default-language: Haskell2010

test-suite smt2-parser-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_smt2_parser
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      HUnit >=1.6.0 && <1.7
    , base >=4.13.0 && <4.14
    , parsec >=3.1.14 && <3.2
    , smt2-parser
    , text >=1.2.4 && <1.3
  default-language: Haskell2010