addressbook/addressbook.cabal

72 lines
2.1 KiB
Plaintext
Raw Normal View History

2020-12-10 19:47:11 +02:00
cabal-version: 2.4
-- Initial package description 'addressbook.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: addressbook
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Mats Rauhala
maintainer: mats.rauhala@iki.fi
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules: MyLib
2020-12-10 21:24:23 +02:00
, Data.Email.Header
2020-12-10 22:22:46 +02:00
, Data.Email
2020-12-10 23:08:03 +02:00
, Control.Addressbook.Streaming
2020-12-10 19:47:11 +02:00
-- other-modules:
-- other-extensions:
2020-12-10 21:24:23 +02:00
default-extensions: OverloadedStrings
LambdaCase
2020-12-10 19:47:11 +02:00
build-depends: base ^>=4.13.0.0
, attoparsec
, mtl
2020-12-10 22:22:46 +02:00
, conduit
, conduit-extra
, bytestring
, lens
2020-12-10 19:47:11 +02:00
, text
2020-12-10 19:50:26 +02:00
, bytestring-trie
2020-12-10 21:24:23 +02:00
, vector
2020-12-10 19:47:11 +02:00
hs-source-dirs: src
default-language: Haskell2010
executable addressbook
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.13.0.0, addressbook
2020-12-10 23:08:03 +02:00
, optparse-applicative
2020-12-10 19:47:11 +02:00
hs-source-dirs: app
default-language: Haskell2010
test-suite addressbook-test
default-language: Haskell2010
2020-12-10 21:24:23 +02:00
default-extensions: OverloadedStrings
LambdaCase
other-modules: Test.Data.Email.Header
2020-12-10 22:22:46 +02:00
, Test.Data.Email
2020-12-10 19:47:11 +02:00
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.13.0.0
2020-12-10 19:50:26 +02:00
, addressbook
, tasty
, tasty-hedgehog
2020-12-10 21:38:32 +02:00
, tasty-hunit
, HUnit
2020-12-10 19:50:26 +02:00
, hedgehog
2020-12-10 22:22:46 +02:00
, bytestring
2020-12-10 21:24:23 +02:00
, hedgehog-corpus
, text
, vector
2020-12-10 22:22:46 +02:00
, conduit
, conduit-extra