-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs-edn-parser.cabal
32 lines (30 loc) · 973 Bytes
/
hs-edn-parser.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
name: hs-edn-parser
version: 0.1.0.0
synopsis: Haskell parser for extensible data notation
-- description:
homepage: https://github.com/robinbb/hs-edn-parser
license: APLv2
license-file: LICENSE-2.0.txt
author: Robin Bate Boerop
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Text.EDN
-- other-modules:
build-depends: base ==4.5.*
, text
, attoparsec
, containers
hs-source-dirs: src
ghc-options: -O3 -Werror -Wall -fno-warn-missing-signatures
executable tests
main-is: Tests.hs
build-depends: base == 4.5.*
, text
, attoparsec
, containers
hs-source-dirs: src, test
ghc-options: -O3 -Werror -Wall -fno-warn-missing-signatures