-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathc-parser-in-haskell.cabal
More file actions
68 lines (66 loc) · 2.79 KB
/
Copy pathc-parser-in-haskell.cabal
File metadata and controls
68 lines (66 loc) · 2.79 KB
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
67
68
-- Initial c-parser-in-haskell.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: c-parser-in-haskell
version: 0.1.0.0
synopsis: A simple library for parsing C code for transformation.
description: A simple library for parsing C code for transformation. Supports preprocessor macros.
license: BSD3
license-file: LICENSE
author: Boldizsar Nemeth
maintainer: nboldi@elte.hu
-- copyright:
category: Language
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: RemixC
, MiniC
, CTransform
, Text.Preprocess.Rewrites
, Text.Preprocess.Parser
, Text.Preprocess.Helpers
, Text.Parsec.PosOps
, Text.Parsec.ExtraCombinators
, SourceCode.ToSourceTree
, SourceCode.SourceTree
, SourceCode.SourceInfo
, SourceCode.Parsec
, SourceCode.ASTNode
, SourceCode.ASTElems
, MiniC.TransformInfo
, MiniC.SymbolTable
, MiniC.SourceNotation
, MiniC.Semantics
, MiniC.Representation
, MiniC.RangeTree
, MiniC.PrettyPrint
, MiniC.Parser
, MiniC.ParseProgram
, MiniC.MiniCPP
, MiniC.Instances
, MiniC.Helpers
, MiniC.GenTemplate
, MiniC.AST
, MiniC.Parser.Lexical
, MiniC.Parser.Expr
, MiniC.Parser.Base
other-modules: Data.SmartTrav
, Data.SmartTrav.TH
, Data.SmartTrav.Instances
, Data.SmartTrav.Indexing
, Data.SmartTrav.Example
, Data.SmartTrav.Class
build-depends: base >=4.7 && <4.8
, parsec >=3.1 && <3.2
, HUnit >=1.2 && <1.3
, lens >=4.7 && <4.8
, directory >=1.2 && <1.3
, filepath >=1.3 && <1.4
, mtl >=2.1 && <2.2
, either >=4.3 && <4.4
, containers >=0.5 && <0.6
, split >=0.2 && <0.3
, transformers >=0.3 && <0.4
, template-haskell >=2.9 && <2.10
default-language: Haskell2010