File: hsemail.cabal

package info (click to toggle)
haskell-hsemail 2-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 168 kB
  • sloc: haskell: 1,342; makefile: 2
file content (72 lines) | stat: -rw-r--r-- 1,827 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:                   hsemail
version:                2
synopsis:               Parsec parsers for the RFC2822 Internet Message format
description:            Parsec parsers for the Internet Message format defined in RFC 2821 and 2822.
category:               Parsing
stability:              stable
homepage:               https://github.com/peti/hsemail#readme
bug-reports:            https://github.com/peti/hsemail/issues
author:                 Peter Simons,
                        Ali Abrar,
                        Gero Kriependorf,
                        Marty Pauley
maintainer:             Peter Simons <simons@cryp.to>
license:                BSD3
license-file:           LICENSE
tested-with:            GHC > 7.8 && < 8.1
build-type:             Simple
cabal-version:          >= 1.10

source-repository head
  type: git
  location: https://github.com/peti/hsemail

library
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base >= 3 && < 5
    , old-time
    , parsec >= 3.1
    , mtl
  exposed-modules:
      Text.Parsec.Rfc2234
      Text.Parsec.Rfc2821
      Text.Parsec.Rfc2822
  other-modules:
      Paths_hsemail
  default-language: Haskell2010

test-suite doctest-hsemail
  type: exitcode-stdio-1.0
  main-is: doctest.hs
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      base >= 3 && < 5
    , old-time
    , parsec >= 3.1
    , mtl
    , doctest
  default-language: Haskell2010

test-suite test-hsemail
  type: exitcode-stdio-1.0
  main-is: spec.hs
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      base >= 3 && < 5
    , old-time
    , parsec >= 3.1
    , mtl
    , hspec
    , hsemail
  default-language: Haskell2010