-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcassette.cabal
30 lines (29 loc) · 1.11 KB
/
cassette.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
Name: cassette
Version: 0.1.0
Author: Mathieu Boespflug
Maintainer: Mathieu Boespflug <[email protected]>
Synopsis: A combinator library for simultaneously defining parsers and pretty printers.
Description:
Combinator library for defining both type safe parsers and pretty
printers simultaneously. This library performs well in practice
because parsers and printers are implemented in CPS and because
arguments are always curried, rather than packed into nested
tuples.
Category: Parsing, Text
License: BSD3
License-File: LICENSE
Cabal-Version: >= 1.10.0
Build-Type: Simple
Tested-With: GHC==7.4, GHC==7.6, GHC==7.8
library
Hs-Source-Dirs: src
Build-Depends: base >= 4 && < 5
Default-Language: Haskell2010
default-extensions: RankNTypes
other-extensions: ImpredicativeTypes
Exposed-Modules: Text.Cassette
Text.Cassette.Prim
Text.Cassette.Lead
Text.Cassette.Combinator
Text.Cassette.Char
Text.Cassette.Number