-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathag-graph.cabal
59 lines (54 loc) · 1.62 KB
/
ag-graph.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
name: ag-graph
version: 0.2
synopsis: Attribute grammars on graphs
license: BSD3
license-file: LICENSE
author: Patrick Bahr and Emil Axelsson
copyright: Copyright (c) 2014 Patrick Bahr and Emil Axelsson
build-type: Simple
cabal-version: >=1.10
extra-source-files:
examples/*.hs
library
hs-source-dirs: src
Exposed-Modules: AG
PAG
Dag
Dag.AG
Dag.PAG
Dag.Rename
Dag.Render
Dot
DagSimple
DagSimple.AG
Other-Modules: Dag.Internal
DagSimple.Internal
AG.Internal
PAG.Internal
Mapping
Tree
Variables
Projection
Projection.Simple
Projection.TypeFam
PAG.Projection
PAG.Projection.Simple
PAG.Projection.TypeFam
PAG.Product
build-depends:
base <5,
containers,
language-dot,
unordered-containers,
mtl,
safe,
vector
default-language: Haskell2010
benchmark bench
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench src examples
main-is: Bench.hs
build-depends: base, containers, criterion, deepseq, safe, mtl, unordered-containers, vector,
language-dot, process, filepath, directory
ghc-options: -O2