packages feed

text-ldap-0.1.1.2: text-ldap.cabal

name:                text-ldap
version:             0.1.1.2
synopsis:            Parser and Printer for LDAP text data stream
description:         This package contains Parser and Printer for
                     LDAP text data stream like OpenLDAP backup LDIF.
license:             BSD3
license-file:        LICENSE
author:              Kei Hibino
maintainer:          ex8k.hibino@gmail.com
copyright:           Copyright (c) 2014 Kei Hibino
category:            Text
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:
                       Text.LDAP.Data
                       Text.LDAP.Parser
                       Text.LDAP.Printer
  other-modules:
                       Text.LDAP.InternalParser

  build-depends:         base <5
                       , bytestring
                       , containers
                       , transformers
                       , attoparsec
                       , dlist
                       , semigroups
                       , base64-bytestring
  hs-source-dirs:        src
  ghc-options:         -Wall
  ghc-prof-options:    -prof -fprof-auto


executable parseTest
  main-is:             parseTest.hs
  build-depends:         base <5
                       , bytestring
                       , text-ldap
  hs-source-dirs:      mains
  ghc-options:         -Wall -rtsopts
  ghc-prof-options:    -prof -fprof-auto

executable ppTest
  main-is:             ppTest.hs
  build-depends:         base <5
                       , bytestring
                       , text-ldap
  hs-source-dirs:      mains
  ghc-options:         -Wall -rtsopts
  ghc-prof-options:    -prof -fprof-auto


Test-suite pp
  build-depends:         base <5
                       , bytestring
                       , random
                       , semigroups
                       , text-ldap
                       , QuickCheck >=2
                       , Cabal

  type:                detailed-0.9
  test-module:         PrintParse
  hs-source-dirs:      test
  ghc-options:         -Wall

source-repository head
  type:       git
  location:   https://github.com/khibino/haskell-text-ldap

source-repository head
  type:       mercurial
  location:   https://bitbucket.org/khibino/haskell-text-ldap