packages feed

domain-auth-0.2.4: domain-auth.cabal

cabal-version: >=1.10
name:          domain-auth
version:       0.2.4
license:       BSD3
license-file:  LICENSE
maintainer:    Kazu Yamamoto <kazu@iij.ad.jp>
author:        Kazu Yamamoto <kazu@iij.ad.jp>
synopsis:      Domain authentication library
description:
    Library for Sender Policy Framework, SenderID,
    DomainKeys and DKIM.

category:      Network
build-type:    Simple

source-repository head
    type:     git
    location: https://github.com/kazu-yamamoto/domain-auth

library
    exposed-modules:
        Network.DomainAuth
        Network.DomainAuth.Mail
        Network.DomainAuth.DK
        Network.DomainAuth.DKIM
        Network.DomainAuth.SPF
        Network.DomainAuth.PRD
        Network.DomainAuth.Types

    other-modules:
        Network.DomainAuth.Utils
        Network.DomainAuth.Mail.Mail
        Network.DomainAuth.Mail.Parser
        Network.DomainAuth.Mail.Types
        Network.DomainAuth.Mail.XMail
        Network.DomainAuth.DK.Parser
        Network.DomainAuth.DK.Types
        Network.DomainAuth.DK.Verify
        Network.DomainAuth.DKIM.Btag
        Network.DomainAuth.DKIM.Parser
        Network.DomainAuth.DKIM.Types
        Network.DomainAuth.DKIM.Verify
        Network.DomainAuth.Pubkey.Base64
        Network.DomainAuth.Pubkey.RSAPub
        Network.DomainAuth.PRD.Domain
        Network.DomainAuth.PRD.Lexer
        Network.DomainAuth.PRD.PRD
        Network.DomainAuth.SPF.Eval
        Network.DomainAuth.SPF.Parser
        Network.DomainAuth.SPF.Resolver
        Network.DomainAuth.SPF.Types

    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4 && <5,
        attoparsec,
        asn1-encoding,
        asn1-types,
        bytestring,
        containers,
        crypton,
        crypton-x509,
        dns >=1.0,
        iproute,
        memory,
        network,
        pretty-simple,
        word8