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
|
-- Initial postdelay.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: postdelay
version: 0.0.0
synopsis: A postfix content filter for delaying delivery of mail
-- description:
homepage: https://git.yggdrasil.li/gkleen/pub/postdelay
license: MIT
license-file: LICENSE
author: Gregor Kleen
maintainer: aethoago@141.li
-- copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Postdelay.Scan
, Postdelay.Types
, Postdelay.Queue
other-modules: Postdelay.TimeSpec
, Postdelay.TimeSpec.Units
, Postdelay.TimeSpec.Utils
, Postdelay.PrioMap
build-depends: base >=4.9 && <5
, time >=1.6 && <2
, parsec >=3.1 && <4
, case-insensitive >=1.2 && <2
, hsemail >=1.7 && <2
, mime >=0.4 && <1
, mtl >=2.2 && <3
, tz >=0.1 && <1
, old-time >=1.1 && <2
, list-t >=1 && <2
, megaparsec >=5.0 && <6
, units >=2.4 && <3
, units-defs >=2.0 && <3
, exceptions >=0.8 && <1
, lens >=4.15 && <5
, lens-datetime >=0.3 && <1
, data-interval >=1.2 && <2
, containers >=0.5.7 && <1
, vector-space >=0.10 && <1
, process >=1.4 && <2
, conduit >=1.2 && <2
, transformers >=0.5 && <1
, bytestring >=0.10 && <1
, optparse-applicative >=0.13 && <1
hs-source-dirs: lib
default-language: Haskell2010
executable postdelay-simple
main-is: Simple.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.9 && <5
, postdelay
, case-insensitive >=1.2 && <2
, exceptions >=0.8 && <1
, bytestring >=0.10 && <1
, conduit >=1.2 && <2
, optparse-applicative >=0.13 && <1
, mtl >=2.2 && <3
hs-source-dirs: src
default-language: Haskell2010
|