forked from tuura/pangraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pangraph.cabal
66 lines (62 loc) · 2.23 KB
/
pangraph.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: pangraph
version: 0.1.1.5
synopsis: A set of parsers for graph languages.
description: Please see README.md
homepage: https://github.com/tuura/pangraph#readme
license: BSD3
license-file: LICENSE
author: Joe Scott
maintainer: [email protected]
copyright: 2016 Joe Scott
category: Web
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==8.0.2
library
hs-source-dirs: src
exposed-modules: Pangraph
, Pangraph.Containers
, Pangraph.GraphML.Parser
, Pangraph.GraphML.Writer
, Pangraph.VHDL.Writer
, Pangraph.VHDL.Internal.GraphWriter
, Pangraph.VHDL.Internal.EnvironmentWriter
, Pangraph.Internal.XMLTemplate
, Pangraph.Examples.Reading
, Pangraph.Examples.Writing
, Pangraph.Examples.ToContainersGraph
, Pangraph.Examples.SampleGraph
build-depends: base >= 4.8 && < 5
, bytestring
, hexml
, containers
, algebraic-graphs
default-language: Haskell2010
GHC-options: -Wall -fwarn-tabs -O2
test-suite pangraph-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Show
, GraphML
, VHDL
, VHDLLiterals
, Containers
build-depends: base >= 4.8 && < 5
, pangraph
, bytestring
, HUnit
, containers
default-language: Haskell2010
GHC-options: -Wall -fwarn-tabs -fbreak-on-exception
executable fantasi
hs-source-dirs: fantasi
main-is: Main.hs
other-modules: Tuura.Fantasi.Main,
Tuura.Fantasi.Options
build-depends: base >= 4.8 && < 5,
filepath,
pangraph,
bytestring
default-language: Haskell2010
GHC-options: -Wall -fwarn-tabs