forked from vincenthz/hs-asn1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathasn1-data.cabal
45 lines (40 loc) · 1.34 KB
/
asn1-data.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
Name: asn1-data
Version: 0.1.1
Description:
ASN1 data reader/writer in raw form with supports for high level forms of ASN1 (BER/CER/DER)
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <[email protected]>
Author: Vincent Hanquez <[email protected]>
Maintainer: Vincent Hanquez <[email protected]>
Synopsis: ASN1 data reader/writer in RAW/BER/DER/CER forms
Build-Type: Simple
Category: Data
stability: experimental
Cabal-Version: >=1.6
data-files: README, TODO
Flag test
Description: Build unit test
Default: False
Library
Build-Depends: base >= 3 && < 5,
binary >= 0.5,
bytestring,
mtl
Exposed-modules: Data.ASN1.BER
Data.ASN1.CER
Data.ASN1.DER
Data.ASN1.Raw
other-modules: Data.ASN1.Prim
Data.ASN1.Internal
ghc-options: -Wall
Executable Tests
Main-Is: Tests.hs
if flag(test)
Buildable: True
Build-depends: base >= 3 && < 5, HUnit, QuickCheck, bytestring
else
Buildable: False
source-repository head
type: git
location: git://github.com/vincenthz/hs-asn1-data