1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- name: fcmtp-data
- version: 0.1.0.0
- cabal-version: >=1.10
- build-type: Simple
- license: BSD3
- license-file: LICENSE
- maintainer: marcos@marcosdumay.com
- homepage: http://sealgram/git/haskell/fmctp-data
- synopsis: fCMTP (and SMTP) protocol related data structures
- author: Marcos Dumay de Medeiros
- data-dir: ""
- extra-source-files: README
-
- library
- build-depends:
- base >=4.7,
- bytestring >=0.10,
- attoparsec >=0.10,
- stringsearch >= 0.3,
- base64-bytestring >= 1.0,
- word8 >= 0.1,
- data-default-class -any,
- utf8-string -any,
- uniform-io >=1.1,
- tools-for-attoparsec,
- string-convert,
- memory,
- cond,
- network-uri,
- split,
- text,
- cryptonite >= 0.9
- exposed-modules:
- Data.SMTP.Response
- Data.SMTP.Account
- Data.SMTP.Constants
- Data.SMTP.Extension
- Data.SMTP.Mime
- Data.SMTP.Resource
- Data.SMTP.ResponseCode
- Data.SMTP.Seal
- Data.SMTP.URI
- Data.SMTP.Address
- Data.SMTP.Crypto.CP
- Data.SMTP.Parser.Host
- exposed: True
- buildable: True
- hs-source-dirs: src
- default-language: Haskell2010
- other-extensions:
- OverloadedStrings
- DeriveDataTypeable
- other-modules:
- Data.SMTP.Parser.Extension, Data.SMTP.Types.Extension
- Data.SMTP.Parser.Account Data.SMTP.Types.Account
- Data.SMTP.Types.Mime Data.SMTP.Parser.Mime
- Data.SMTP.Types.Resource Data.SMTP.Parser.Resource
- Data.SMTP.Types.Seal
- Data.SMTP.Types.Address Data.SMTP.Parser.Address
- Data.SMTP.Types.URI Data.SMTP.Parser.URI,
- Data.SMTP.Crypto.Types.CP, Data.SMTP.Crypto.Algos.CP
- ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded
|