packages feed

mismi-s3-core-0.0.2: mismi-s3-core.cabal

version: 0.0.2

name:
  mismi-s3-core
author:
  Nick Hibberd
maintainer:
  Nick Hibberd <nhibberd@gmail.com>
homepage:
  https://github.com/nhibberd/mismi
bug-reports:
  https://github.com/nhibberd/mismi/issues
synopsis:
  AWS Library
description:
  mismi-s3-core provides a set of data types around S3 concepts and
  useful functions over them.
category:
  AWS
license:
  BSD3
license-file:
  LICENSE
cabal-version:
  >= 1.8
build-type:
  Simple
tested-with:
    GHC == 8.2.2
  , GHC == 8.4.3

library
  build-depends:
      base                            >= 3          && < 5
    , mismi-p                         == 0.0.2.*
    , attoparsec                      >= 0.12       && < 0.14
    , text                            >= 1.1        && < 1.3

  ghc-options:
    -Wall

  hs-source-dirs:
    src


  exposed-modules:
    Mismi.S3.Core.Data

test-suite test
  type:
    exitcode-stdio-1.0

  main-is:
    test.hs

  ghc-options:
    -Wall -threaded -O2

  hs-source-dirs:
    test

  other-modules:
    Test.Mismi.S3.Core.Data
    Test.Mismi.S3.Core.Gen

  build-depends:
      base                            >= 3          && < 5
    , mismi-s3-core
    , mismi-p                         == 0.0.2.*
    , hedgehog
    , text                            >= 1.1        && < 1.3