packages feed

smt2-parser-0.1.0.1: smt2-parser.cabal

cabal-version: 1.12

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

name:           smt2-parser
version:        0.1.0.1
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:     ubikium@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 && <5
    , parsec >=3.1.14
    , text >=1.2.4
  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
    , base >=4.13.0 && <5
    , parsec >=3.1.14
    , smt2-parser
    , text >=1.2.4
  default-language: Haskell2010