forked from well-typed/cborg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-serialise-cbor.cabal
59 lines (52 loc) · 2.02 KB
/
binary-serialise-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
name: binary-serialise-cbor
version: 0.2.2.0
synopsis: Yet Another Binary Serialisation Library (compatibility shim)
license: BSD3
license-file: LICENSE.txt
author: Duncan Coutts
maintainer: [email protected], [email protected]
bug-reports: https://github.com/well-typed/cborg/issues
copyright: 2015-2017 Duncan Coutts,
2015-2017 Well-Typed LLP,
2015 IRIS Connect Ltd
category: Codec
build-type: Simple
cabal-version: 1.22
tested-with:
GHC == 8.4.4,
GHC == 8.6.5,
GHC == 8.8.3,
GHC == 8.10.7,
GHC == 9.0.1,
GHC == 9.2.2,
GHC == 9.4.2
extra-source-files:
ChangeLog.md
description:
This package is a shim around @cborg@, exposing an interface compatible with
the previous @binary-serialise-cbor@.
source-repository head
type: git
location: https://github.com/well-typed/cborg.git
library
default-language: Haskell2010
hs-source-dirs: src
reexported-modules:
Codec.Serialise as Data.Binary.Serialise.CBOR,
Codec.Serialise.Class as Data.Binary.Serialise.CBOR.Class,
Codec.Serialise.Decoding as Data.Binary.Serialise.CBOR.Decoding,
Codec.Serialise.Encoding as Data.Binary.Serialise.CBOR.Encoding,
Codec.CBOR.FlatTerm as Data.Binary.Serialise.CBOR.FlatTerm,
Codec.Serialise.IO as Data.Binary.Serialise.CBOR.IO,
Codec.CBOR.Magic as Data.Binary.Serialise.CBOR.Magic,
Codec.CBOR.Pretty as Data.Binary.Serialise.CBOR.Pretty,
Codec.Serialise.Properties as Data.Binary.Serialise.CBOR.Properties,
Codec.CBOR.Write as Data.Binary.Serialise.CBOR.Write,
Codec.CBOR.Term as Data.Binary.Serialise.CBOR.Term,
Codec.Serialise.Tutorial as Data.Binary.Serialise.CBOR.Tutorial
exposed-modules: Data.Binary.Serialise.CBOR.Read
build-depends:
base >= 4.11 && < 4.20,
bytestring < 1.0,
cborg == 0.2.*,
serialise == 0.2.*