-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCBOR.cabal
61 lines (56 loc) · 2.09 KB
/
CBOR.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
name: CBOR
version: 0.1.0.1
synopsis: Encode/Decode values to/from CBOR
description: Provides a simple type to represent CBOR values as well
as instances of the Get and Put classes from the binary
package to encode\/decode those values to\/from
ByteStrings. /N.B./ Alpha, interface subject to change!
homepage: https://github.com/orclev/CBOR
license: LGPL-3
license-file: LICENSE
author: R. Kyle Murphy
maintainer: [email protected]
-- copyright:
category: Data
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Data.CBOR
, Data.Binary.CBOR
other-modules: Data.CBOR.Util
, Data.Binary.IEEE754.HalfFloat
ghc-options: -Wall -O2
build-depends: base >=4.6 && < 5
, bytestring >= 0.10
, binary >= 0.6
, binary-bits >= 0.3
, data-binary-ieee754 >= 0.4
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Suite.hs
default-language: Haskell2010
ghc-options: -fhpc
build-depends: base >= 4.6 && < 5
, bytestring >= 0.10
, CBOR
, binary >= 0.6
, binary-bits >= 0.3
, data-binary-ieee754 >= 0.4
, test-framework >= 0.3.3
, test-framework-quickcheck2 >= 0.3
, QuickCheck >= 2.6
test-suite doctests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: doctests.hs
default-language: Haskell2010
ghc-options: -fhpc
build-depends: base >= 4.6 && < 5
, doctest >= 0.9
source-repository head
type: git
location: https://github.com/orclev/CBOR.git