File: x509.cabal

package info (click to toggle)
haskell-x509 1.7.7-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 180 kB
  • sloc: haskell: 1,673; makefile: 3
file content (65 lines) | stat: -rw-r--r-- 2,276 bytes parent folder | download | duplicates (2)
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
Name:                x509
version:             1.7.7
Description:         X509 reader and writer. please see README
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Synopsis:            X509 reader and writer
Build-Type:          Simple
Category:            Data
stability:           experimental
Homepage:            http://github.com/vincenthz/hs-certificate
Cabal-Version:       >= 1.10
Extra-Source-Files:  ChangeLog.md

Library
  Default-Language:  Haskell2010
  Build-Depends:     base >= 4.7 && < 5
                   , bytestring
                   , memory
                   , transformers >= 0.4
                   , containers
                   , hourglass
                   , pem >= 0.1
                   , asn1-types >= 0.3.1 && < 0.4
                   , asn1-encoding >= 0.9 && < 0.10
                   , asn1-parse >= 0.9.3 && < 0.10
                   , cryptonite >= 0.24
  Exposed-modules:   Data.X509
                     Data.X509.EC
  Other-modules:     Data.X509.Internal
                     Data.X509.CertificateChain
                     Data.X509.AlgorithmIdentifier
                     Data.X509.DistinguishedName
                     Data.X509.Cert
                     Data.X509.PublicKey
                     Data.X509.PrivateKey
                     Data.X509.Ext
                     Data.X509.ExtensionRaw
                     Data.X509.CRL
                     Data.X509.OID
                     Data.X509.Signed
  ghc-options:       -Wall

Test-Suite test-x509
  Default-Language:  Haskell2010
  type:              exitcode-stdio-1.0
  hs-source-dirs:    Tests
  Main-is:           Tests.hs
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , mtl
                   , tasty
                   , tasty-quickcheck
                   , hourglass
                   , asn1-types
                   , x509
                   , cryptonite
  ghc-options:       -Wall -fno-warn-orphans -fno-warn-missing-signatures

source-repository head
  type:     git
  location: git://github.com/vincenthz/hs-certificate
  subdir:   x509