fcmtp-data.cabal 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. name: fcmtp-data
  2. version: 0.1.0.0
  3. cabal-version: >=1.10
  4. build-type: Simple
  5. license: BSD3
  6. license-file: LICENSE
  7. maintainer: marcos@marcosdumay.com
  8. homepage: http://sealgram/git/haskell/fmctp-data
  9. synopsis: fCMTP (and SMTP) protocol related data structures
  10. author: Marcos Dumay de Medeiros
  11. data-dir: ""
  12. extra-source-files: README
  13. library
  14. build-depends:
  15. base >=4.7,
  16. bytestring >=0.10,
  17. attoparsec >=0.10,
  18. stringsearch >= 0.3,
  19. base64-bytestring >= 1.0,
  20. word8 >= 0.1,
  21. data-default-class -any,
  22. utf8-string -any,
  23. tools-for-attoparsec,
  24. string-convert,
  25. memory,
  26. cond,
  27. network-uri,
  28. split,
  29. text,
  30. cryptonite >= 0.9
  31. exposed-modules:
  32. Data.SMTP.Response
  33. Data.SMTP.Account
  34. Data.SMTP.Constants
  35. Data.SMTP.Extension
  36. Data.SMTP.Mime
  37. Data.SMTP.Resource
  38. Data.SMTP.ResponseCode
  39. Data.SMTP.Seal
  40. Data.SMTP.URI
  41. Data.SMTP.Crypto.CP
  42. Data.SMTP.Parser.Host
  43. exposed: True
  44. buildable: True
  45. hs-source-dirs: src
  46. default-language: Haskell2010
  47. other-extensions:
  48. OverloadedStrings
  49. DeriveDataTypeable
  50. other-modules:
  51. Data.SMTP.Parser.Extension, Data.SMTP.Types.Extension
  52. Data.SMTP.Parser.Account Data.SMTP.Types.Account
  53. Data.SMTP.Types.Mime Data.SMTP.Parser.Mime
  54. Data.SMTP.Types.Resource Data.SMTP.Parser.Resource
  55. Data.SMTP.Types.Seal, Data.SMTP.Parser.Seal,
  56. Data.SMTP.Types.URI Data.SMTP.Parser.URI,
  57. Data.SMTP.Crypto.Types.CP, Data.SMTP.Crypto.Algos.CP
  58. ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns