packages feed

indieweb-algorithms-0.1.0: indieweb-algorithms.cabal

name:            indieweb-algorithms
version:         0.1.0
synopsis:        A collection of implementations of IndieWeb algorithms.
category:        Web
homepage:        https://github.com/myfreeweb/indieweb-algorithms
author:          Greg V
copyright:       2015 Greg V <greg@unrelenting.technology>
maintainer:      greg@unrelenting.technology
license:         PublicDomain
license-file:    UNLICENSE
build-type:      Simple
cabal-version:   >= 1.18
extra-source-files:
    README.md
tested-with:
    GHC == 7.10.2


source-repository head
    type: git
    location: git://github.com/myfreeweb/indieweb-algorithms.git

library
    build-depends:
        base >= 4.0.0.0 && < 5
      , transformers
      , text
      , bytestring
      , time
      , either
      , safe
      , containers
      , unordered-containers
      , vector
      , lens
      , aeson
      , lens-aeson
      , data-default
      , network-uri
      , microformats2-parser
      , http-link-header
    default-language: Haskell2010
    exposed-modules:
        Data.IndieWeb.Authorship
        Data.IndieWeb.Endpoints
        Data.IndieWeb.MicroformatsUtil
    ghc-options: -Wall
    hs-source-dirs: library

test-suite tests
    build-depends:
        base >= 4.0.0.0 && < 5
      , mtl
      , time
      , text
      , bytestring
      , network-uri
      , hspec
      , hspec-expectations-pretty-diff
      , aeson
      , template-haskell
      , indieweb-algorithms
      , microformats2-parser
      , raw-strings-qq
      , aeson-qq
      , data-default
    default-language: Haskell2010
    ghc-options: -threaded -Wall -fhpc
    hs-source-dirs: test-suite
    main-is: Spec.hs
    other-modules:
        TestCommon
        Data.IndieWeb.AuthorshipSpec
        Data.IndieWeb.EndpointsSpec
        Data.IndieWeb.MicroformatsUtilSpec
    type: exitcode-stdio-1.0