cabal-version:       >=1.10
-- Initial package description 'dmarc.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/

name:                mail-reports
version:             0.1.0.0
synopsis:            A parser library for DMARC reports
description:         This library is meant to parse DMARC aggregated reports from bytestrings, XML documents or streaming bytestrings.
-- bug-reports:
license:             AGPL-3
license-file:        LICENSE
author:              Enum Cohrs
maintainer:          enum@doomanddarkness.eu
-- copyright:
category:            Mail
build-type:          Simple
extra-source-files:  CHANGELOG.md

source-repository head
  type: darcs
  location: https://hub.darcs.net/enum/mail-reports
                     
library
  exposed-modules:     Data.Mail.DMARC.Reports
  -- other-modules:
  -- other-extensions:
  build-depends:       base >=4.13 && <4.14,
                       streaming-bytestring,
                       zip-archive,
                       streaming-utils,
                       streaming,
                       bytestring,
                       xml,
                       resourcet,
                       text,
                       time,
                       mtl
                       
  hs-source-dirs:      src
  default-language:    Haskell2010