packages feed

betacode-0.1.0.2: betacode.cabal

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

name:                betacode
version:             0.1.0.2
synopsis:            A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code).
category:            Text
description:         A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code).
license:             Apache-2.0
license-file:        LICENSE
author:              Eric Rochester
maintainer:          erochest@gmail.com
-- copyright:           
-- category:            
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Text.BetaCode
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.19 && <4.20
                     , errors     >=2.3  && <2.4
                     , attoparsec >=0.14 && <0.15
                     , hashable   >=1.4  && <1.5
                     , text       >=2.1  && <2.2
                     , text-icu   >=0.8  && <0.9
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite betacode-specs
  type:                exitcode-stdio-1.0
  ghc-options:         -threaded -rtsopts
  hs-source-dirs:      specs
  main-is:             Specs.hs
  build-depends:         base       == 4.19.*
                       , QuickCheck
                       , smallcheck
                       , hspec
                       -- , tasty
                       -- , tasty-quickcheck
                       -- , tasty-smallcheck
  default-language:    Haskell2010


source-repository this
  type:                git
  tag:                 0.1.0.0
  location:            git://github.com/erochest/betacode.git