-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs-xdr-simple.cabal
31 lines (26 loc) · 1.09 KB
/
hs-xdr-simple.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
name: hs-xdr-simple
version: 0.2.0.1
synopsis: A codec module implements a subset of eXternal Data Representation (RFC: 4506)
description: A thin wrapper around the cereal package, inspired by Python's xdrlib.
license: BSD3
license-file: LICENSE
author: horus
maintainer: [email protected]
category: Data
build-type: Simple
extra-source-files: README.markdown,
examples/GangliaMessage.hs
cabal-version: >= 1.10
library
ghc-options: -Wall -Werror -fno-warn-type-defaults
exposed-modules: Codec.Binary.XDR.Simple
other-extensions: TypeSynonymInstances,
FlexibleInstances,
ScopedTypeVariables,
OverlappingInstances
build-depends: base == 4.*,
bytestring >= 0.10,
cereal >= 0.4,
text >= 0.11.2.2
hs-source-dirs: src
default-language: Haskell2010