This repository has been archived by the owner on Oct 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpkcs10.cabal
74 lines (70 loc) · 2.43 KB
/
pkcs10.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
name: pkcs10
version: 0.2.0.0
synopsis: PKCS#10 library
description: Please see README.md
homepage: https://github.com/fcomb/pkcs10-hs#readme
license: Apache-2.0
license-file: LICENSE
author: Timothy Klim <[email protected]>
maintainer: Timothy Klim <[email protected]>
copyright: Timothy Klim <[email protected]>
category: Data
build-type: Simple
cabal-version: >=1.10
stability: experimental
extra-doc-files: README.md
extra-source-files: test/fixtures/dsaparams
, test/fixtures/dsa.pem
, test/fixtures/dsa1.csr
, test/fixtures/dsa2.csr
, test/fixtures/dsa3.csr
, test/fixtures/rsa.pem
, test/fixtures/rsa1.csr
, test/fixtures/rsa2.csr
, test/fixtures/rsa3.csr
library
ghc-options: -W
hs-source-dirs: src
exposed-modules: Data.X509.PKCS10
default-language: Haskell2010
build-depends: base >= 4.3 && < 5
, bytestring
, x509
, cryptonite
, pem
, asn1-types
, asn1-encoding
, asn1-parse
test-suite tests
ghc-options: -W
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
other-modules: Keys
build-depends: base >= 4.3 && < 5
, pkcs10
, transformers
, tasty
, tasty-hunit
, tasty-quickcheck
, QuickCheck
, bytestring
, cryptonite
, pem
, x509
, asn1-types
, asn1-encoding
, asn1-parse
-- executable example
-- ghc-options: -W
-- default-language: Haskell2010
-- hs-source-dirs: example
-- main-is: Main.hs
-- build-depends: base >= 4.3 && < 5
-- , pkcs10
-- , cryptonite
-- , x509
source-repository head
type: git
location: git://github.com/fcomb/pkcs10-hs