forked from skogsbaer/roundtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roundtrip.cabal
51 lines (49 loc) · 1.81 KB
/
roundtrip.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
Name: roundtrip
Version: 0.2.0.6
Synopsis: Bidirectional (de-)serialization
Description: Roundtrip allows the definition of bidirectional
(de-)serialization specifications. The specification language
is based on the ideas described in the paper
/Invertible Syntax Descriptions: Unifying Parsing and Pretty Printing/
by Tillmann Rendel and Klaus Ostermann, Haskell Symposium 2010.
.
This package does not provide concrete instances of the
specification classes, see the packages roundtrip-string and
roundtrip-xml instead.
.
The package contains slightly modified code from
Tillmann Rendel's partial-isomorphisms and invertible-syntax
packages (Copyright (c) 2010-11 University of Marburg).
License: BSD3
License-file: LICENSE
Author: Stefan Wehr <[email protected]>,
David Leuschner <[email protected]>
Maintainer: Stefan Wehr <[email protected]>,
Category: Text
Build-type: Simple
Cabal-version: >=1.10
Source-repository head
Type: git
location: https://github.com/factisresearch/roundtrip
Library
Hs-Source-Dirs: src
Default-language: Haskell2010
Exposed-modules:
Text.Roundtrip
, Text.Roundtrip.Combinators
, Text.Roundtrip.Classes
, Text.Roundtrip.SpecPrinter
, Control.Isomorphism.Partial
, Control.Isomorphism.Partial.Prim
, Control.Isomorphism.Partial.Iso
, Control.Isomorphism.Partial.TH
, Control.Isomorphism.Partial.Constructors
, Control.Isomorphism.Partial.Derived
Build-depends:
base >= 4.6 && < 5
, safe
, containers
, text
, template-haskell
, xml-types
, pretty