fcmtp-client.cabal 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. -- Initial fcmtp-client.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: fcmtp-client
  4. version: 0.1.0.0
  5. -- synopsis:
  6. -- description:
  7. license: MIT
  8. license-file: LICENSE
  9. author: Marcos Dumay de Medeiros
  10. maintainer: marcos@marcosdumay.com
  11. -- copyright:
  12. category: Network
  13. build-type: Simple
  14. extra-source-files: ChangeLog.md
  15. cabal-version: >=1.10
  16. library
  17. exposed-modules:
  18. Network.FCMTP.Client
  19. Network.FCMTP.ClientError
  20. Network.FCMTP.Relay
  21. other-modules:
  22. Network.FCMTP.SendingState
  23. -- other-extensions:
  24. build-depends: base >=4.9 && <4.10,
  25. uniform-io,
  26. cond,
  27. interruptible,
  28. dns,
  29. mtl,
  30. data-default-class,
  31. attoparsec,
  32. bytestring,
  33. stringsearch,
  34. random,
  35. string-convert,
  36. monad-control,
  37. transformers-base,
  38. either,
  39. regex-tdfa,
  40. lens,
  41. fcmtp-data
  42. hs-source-dirs: src
  43. default-language: Haskell2010