packages feed

crypton-pem-0.2.5: crypton-pem.cabal

cabal-version: 1.18

-- This file has been generated from package.yaml by hpack version 0.38.1.
--
-- see: https://github.com/sol/hpack

name:           crypton-pem
version:        0.2.5
synopsis:       Privacy Enhanced Mail (PEM) file format reader and writer.
description:    A library to read and write files in the Privacy Enhanced Mail (PEM) format.
category:       Data
stability:      experimental
homepage:       http://github.com/mpilgrem/crypton-pem
bug-reports:    https://github.com/mpilgrem/crypton-pem/issues
author:         Vincent Hanquez <vincent@snarc.org>
maintainer:     Mike Pilgrem <public@pilgrem.com>,
                Kazu Yamamoto <kazu@iij.ad.jp>
copyright:      Vincent Hanquez <vincent@snarc.org>
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-doc-files:
    CHANGELOG.md
    README.md

source-repository head
  type: git
  location: https://github.com/mpilgrem/crypton-pem

library
  exposed-modules:
      Data.PEM
  other-modules:
      Data.PEM.Parser
      Data.PEM.Types
      Data.PEM.Writer
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base >=3 && <5
    , basement
    , bytestring
    , deepseq
    , memory
  default-language: Haskell98

test-suite test-pem
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test
  ghc-options: -Wall
  build-depends:
      HUnit
    , QuickCheck >=2.4.0.1
    , base
    , bytestring
    , crypton-pem
    , test-framework >=0.3.3
    , test-framework-hunit
    , test-framework-quickcheck2
  default-language: Haskell98