packages feed

tyro-0.3.0.0: tyro.cabal

name:                tyro
version:             0.3.0.0
synopsis:            Type derived JSON parsing using Aeson
description:
    A library for deriving JSON parsers (using Aeson) by indicating
    JSON structure at the type level.
homepage:            https://github.com/rlupton20/tyro#readme
license:             BSD3
license-file:        LICENSE
author:              Richard Lupton
maintainer:          example@example.com
copyright:           2017 Richard Lupton
category:            Text, Web, JSON
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  ghc-options:         -Wall
  exposed-modules:     Data.Tyro
  other-modules:       Lib.Prelude
                     , Data.Tyro.Internal
  build-depends:       base >= 4.9 && < 5
                     , protolude >= 0.1.6 && < 0.2
                     , aeson
                     , vector
                     , text
                     , bytestring
                     , singletons
                     , reflection
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings, NoImplicitPrelude

test-suite tyro-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test, src
  main-is:             Spec.hs
  other-modules:       Data.Tyro
                     , Data.Tyro.Internal
                     , Lib.Prelude
  build-depends:       base
                     , tyro
                     , protolude >= 0.1.6 && < 0.2
                     , test-framework
                     , test-framework-hunit
                     , HUnit
                     , text
                     , bytestring
                     , vector
                     , singletons
                     , reflection
                     , aeson
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings, NoImplicitPrelude

source-repository head
  type:     git
  location: https://github.com/rlupton20/tyro