name: nero version: 0.1 synopsis: Lens-based HTTP toolkit description: This package represents the core of the @Nero@ HTTP toolkit. . This an initial alpha release with just basic routing and HTTP parameters handling. . Check the for a more detailed explanation. homepage: https://github.com/jdnavarro/nero bug-reports: https://github.com/jdnavarro/nero/issues license: BSD3 license-file: LICENSE author: Danny Navarro maintainer: j@dannynavarro.net stability: alpha copyright: Copyright (C) 2015 J. Daniel Navarro category: Web build-type: Simple cabal-version: >=1.10 tested-with: GHC==7.8.4 extra-source-files: README.md CHANGELOG.md source-repository head type: git location: git://github.com/jdnavarro/nero.git library exposed-modules: Nero, Nero.Application, Nero.Match, Nero.Param Nero.Payload, Nero.Response, Nero.Request, Nero.Url build-depends: base >=4.7 && <4.8, bytestring, containers, text, lens, safe default-language: Haskell2010 ghc-options: -Wall test-suite doctests default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: tests main-is: doctests.hs ghc-options: -Wall -threaded build-depends: base >= 4.7 && <4.8, Glob, doctest test-suite examples default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: examples main-is: test.hs ghc-options: -Wall -threaded build-depends: base >= 4.7 && <4.8, bytestring, text, lens, nero, tasty, tasty-hunit