-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcodec.cabal
57 lines (54 loc) · 1.81 KB
/
codec.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
name: codec
version: 0.2.1
license: BSD3
license-file: LICENSE
synopsis: Simple bidirectional serialization
description: See the README
author: Patrick Chilton
maintainer: chpatrick@gmail.com
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
homepage: https://github.com/chpatrick/codec
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/chpatrick/codec.git
library
exposed-modules: Control.Monad.Codec,
Data.Aeson.Codec,
Data.Binary.Codec,
Data.Binary.Bits.Codec
build-depends: base >=4.6 && < 6,
bytestring,
binary,
binary-bits,
template-haskell,
mtl,
aeson >= 1.0.0.0,
text,
unordered-containers,
transformers,
profunctors,
vector
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite codec-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
other-modules: Data.Aeson.Codec.Test
Data.Binary.Codec.Test
build-depends: base,
bytestring,
aeson,
codec,
tasty,
tasty-quickcheck,
generic-arbitrary,
binary
ghc-options: -Wall
default-language: Haskell2010