-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathh-gpgme.cabal
85 lines (80 loc) · 2.94 KB
/
h-gpgme.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Name: h-gpgme
Version: 0.6.2.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==8.8
, GHC==9.0
, GHC==9.2
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