-
Notifications
You must be signed in to change notification settings - Fork 2
/
parser-helper.cabal
39 lines (35 loc) · 1.39 KB
/
parser-helper.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
name: parser-helper
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
synopsis: Prints Haskell parse trees in JSON.
-- A longer description of the package.
description: Serialize haskell-src-exts parse trees to JSON.
license: Apache-2.0
license-file: LICENSE
author: Peter A. Jonsson
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/pjonsson/parser-helper
executable parser-helper
main-is: Development/Main.hs
-- other-modules:
other-extensions: TemplateHaskell,
OverloadedStrings
build-depends: base >= 4.6,
aeson > 0.7,
haskell-src-exts > 1.15 && < 1.16,
bytestring > 0.10,
text > 1.0
hs-source-dirs: src
default-language: Haskell2010