packages feed

betacode-0.1.0.0: 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.0
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.7 && <4.8
                     , errors     >=1.4  && <1.5
                     , attoparsec >=0.12 && <0.13
                     , hashable   >=1.2  && <1.3
                     , text       >=1.2  && <1.3
                     , text-icu   >=0.7  && <0.8
  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.7.*
                       , 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