-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvaultaire-common.cabal
111 lines (96 loc) · 3.58 KB
/
vaultaire-common.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
cabal-version: >= 1.10
name: vaultaire-common
version: 2.10.0
synopsis: Common types and instances for Vaultaire
description: Defines a set of types, typeclasses and instances for
Vaultaire, intended for use with Marquise and other
Vaultaire related libraries and executables
license: BSD3
author: Anchor Engineering <engineering@anchor.com.au>
maintainer: Anchor Engineering <engineering@anchor.com.au>
copyright: © 2013-2015 Anchor Systems, Pty Ltd and Others
category: Other
license-file: LICENSE
tested-with: GHC == 7.8.3
stability: experimental
build-type: Simple
source-repository head
type: git
location: git@github.com:anchor/vaultaire-common.git
library
hs-source-dirs: lib
default-language: Haskell2010
exposed-modules: Vaultaire.Program,
Vaultaire.Types,
Vaultaire.Util
other-modules: Vaultaire.Classes.WireFormat,
Vaultaire.Types.Address,
Vaultaire.Types.ContentsOperation,
Vaultaire.Types.ContentsResponse,
Vaultaire.Types.SourceDict,
Vaultaire.Types.SourceDictCache,
Vaultaire.Types.ReadStream,
Vaultaire.Types.ReadRequest,
Vaultaire.Types.Common,
Vaultaire.Types.WriteResult,
Vaultaire.Types.ContentsListBypass,
Vaultaire.Types.DayMap,
Vaultaire.Types.Decoded,
Vaultaire.Types.TimeStamp,
Vaultaire.Types.PassThrough,
Vaultaire.Types.Telemetry
build-depends: base >=3 && <5,
bytestring,
QuickCheck,
packer,
async,
transformers,
unix,
hslogger,
hashable,
containers,
unordered-containers,
blaze-builder,
attoparsec,
text,
time,
old-locale,
locators >= 0.2.4,
siphash,
cereal
ghc-options: -Wall
-Wwarn
-fwarn-tabs
ghc-prof-options: -fprof-auto
test-suite wire-formats-test
hs-source-dirs: tests
main-is: WireFormatsTest.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >=4.7 && <5,
hspec,
containers,
unordered-containers,
text,
locators >= 0.2.4,
QuickCheck,
mtl,
bytestring,
vaultaire-common
ghc-options: -threaded
-Wall
-Wwarn
-fwarn-tabs
test-suite instance-test
hs-source-dirs: tests
main-is: InstanceTest.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >=4.7 && <5,
hspec,
vaultaire-common
ghc-options: -threaded
-Wall
-Wwarn
-fwarn-tabs
-- vim: set tabstop=21 expandtab: