addressbook/addressbook.cabal

72 lines
2.1 KiB
Plaintext

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
, Data.Email.Header
, Data.Email
, Control.Addressbook.Streaming
-- other-modules:
-- other-extensions:
default-extensions: OverloadedStrings
LambdaCase
build-depends: base ^>=4.13.0.0
, attoparsec
, mtl
, conduit
, conduit-extra
, bytestring
, lens
, text
, bytestring-trie
, vector
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
, optparse-applicative
hs-source-dirs: app
default-language: Haskell2010
test-suite addressbook-test
default-language: Haskell2010
default-extensions: OverloadedStrings
LambdaCase
other-modules: Test.Data.Email.Header
, Test.Data.Email
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.13.0.0
, addressbook
, tasty
, tasty-hedgehog
, tasty-hunit
, HUnit
, hedgehog
, bytestring
, hedgehog-corpus
, text
, vector
, conduit
, conduit-extra