forked from nominolo/atto-lisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatto-lisp.cabal
47 lines (43 loc) · 1.41 KB
/
atto-lisp.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
name: atto-lisp
version: 0.2.2.2
license: BSD3
license-file: LICENSE
author: Thomas Schilling <[email protected]>
maintainer: Thomas Schilling <[email protected]>
homepage: http://github.com/nominolo/atto-lisp
synopsis: Efficient parsing and serialisation of S-Expressions.
description:
Efficient parsing and serialisation of S-Expressions.
category: Text, Data
stability: provisional
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
changelog.md
library
build-depends:
attoparsec >= 0.10 && < 0.14,
base >= 4.2 && < 5,
blaze-builder >= 0.3 && < 0.5,
blaze-textual >= 0.1 && < 0.3,
bytestring >= 0.9 && < 0.11,
containers >= 0.3 && < 0.6,
deepseq >= 1.1 && < 1.5,
text >= 0.10 && < 1.3
exposed-modules:
Data.AttoLisp
ghc-options: -Wall
default-language: Haskell2010
Test-Suite test
Type: exitcode-stdio-1.0
Main-is: test-attolisp.hs
Hs-Source-Dirs: test
Build-depends: atto-lisp
, attoparsec
, base
, bytestring
, text
, HUnit
, test-framework
, test-framework-hunit
Default-language: Haskell2010