name: tyro version: 0.1.1.1 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 build-depends: base >= 4.9 && < 5 , protolude >= 0.1.6 && < 0.2 , aeson , text , singletons default-language: Haskell2010 default-extensions: OverloadedStrings, NoImplicitPrelude test-suite tyro-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , tyro , protolude >= 0.1.6 && < 0.2 , test-framework , test-framework-hunit , HUnit , text , 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