packages feed

h-gpgme-0.6.0.0: h-gpgme.cabal

Name:                h-gpgme
Version:             0.6.0.0
Description:         High Level Binding for GnuPG Made Easy (gpgme): A Haskell API for the gpgme C library.
Synopsis:            High Level Binding for GnuPG Made Easy (gpgme)
License:             MIT
License-file:        LICENSE
Author:              Reto
Maintainer:          rethab@protonmail.com
Copyright:           (c) Reto 2022
Homepage:            https://github.com/rethab/h-gpgme
Bug-reports:         https://github.com/rethab/h-gpgme/issues
Tested-With:         GHC==7.10.3
Category:            Cryptography
Build-Type:          Simple
Cabal-Version:       >=1.10
Extra-Source-Files:
  CHANGELOG.markdown
  README.markdown
  .gitignore


source-repository head
  type:     git
  location: https://github.com/rethab/h-gpgme

library
  hs-source-dirs:      src
  ghc-options:         -Wall
                       -fno-warn-orphans
  exposed-modules:     Crypto.Gpgme
                     , Crypto.Gpgme.Key.Gen
  other-modules:       Crypto.Gpgme.Key
                     , Crypto.Gpgme.Ctx
                     , Crypto.Gpgme.Crypto
                     , Crypto.Gpgme.Internal
                     , Crypto.Gpgme.Types
  build-depends:       base           == 4.*
                     , bindings-gpgme >= 0.1.8 && <0.2
                     , bytestring     >= 0.9
                     , transformers   >= 0.4.1 && <0.6
                     , time           >= 1.4 && <2.0
                     , unix           >= 2.5
                     , email-validate
                     , time
                     , data-default
  default-language:    Haskell2010

test-suite tests
  type:                exitcode-stdio-1.0
  default-language:    Haskell2010
  ghc-options:         -Wall
  hs-source-dirs:      src, test
  main-is:             Main.hs
  build-depends:       base           == 4.*
                     , bindings-gpgme >= 0.1.6 && <0.2
                     , bytestring     >= 0.9
                     , transformers   >= 0.4.1 && <0.6
                     , time           >= 1.4 && <2.0
                     , unix           >= 2.5
                     , directory
                     , filepath
                     , email-validate
                     , data-default
                     , temporary
                     , exceptions

                     , HUnit
                     , tasty
                     , tasty-quickcheck
                     , tasty-hunit
                     , QuickCheck                 
  other-modules:       Crypto.Gpgme
                     , Crypto.Gpgme.Crypto
                     , Crypto.Gpgme.Ctx
                     , Crypto.Gpgme.Internal
                     , Crypto.Gpgme.Key
                     , Crypto.Gpgme.Key.Gen
                     , Crypto.Gpgme.Types
                     , CryptoTest
                     , CtxTest
                     , KeyTest
                     , KeyGenTest
                     , TestUtil