diff options
author | tv <tv@krebsco.de> | 2020-11-24 20:07:37 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-11-24 20:24:20 +0100 |
commit | 8f11927ea74d6adb332c884502ebd9c486837523 (patch) | |
tree | e47587a76b9767b83a5e5ca9eac7d8b0b416b242 /mailaids.cabal |
initial commitv1.0.0
Diffstat (limited to 'mailaids.cabal')
-rw-r--r-- | mailaids.cabal | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/mailaids.cabal b/mailaids.cabal new file mode 100644 index 0000000..d9ed59b --- /dev/null +++ b/mailaids.cabal @@ -0,0 +1,28 @@ +name: mailaids +version: 1.0.0 +license: MIT +author: tv <tv@krebsco.de> +maintainer: tv@krebsco.de +build-type: Simple +cabal-version: >=1.10 + +executable mailaid + main-is: main.hs + default-language: Haskell2010 + ghc-options: -Wall -O2 -threaded -with-rtsopts=-N + hs-source-dirs: src + build-depends: + aeson, + aeson-pretty, + base, + bytestring, + case-insensitive, + lens, + optparse-applicative, + purebred-email, + text, + vector, + word8 + other-modules: + Data.ByteString.Extended + Data.MIME.Extended |