forked from jameysharp/corrode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorrode.cabal
39 lines (37 loc) · 1.32 KB
/
corrode.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: corrode
version: 0.1.0.0
license: GPL-2
license-file: LICENSE
author: Jamey Sharp
maintainer: jamey@minilop.net
category: Language
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Language.Rust,
Language.Rust.AST,
Language.Rust.Idiomatic,
Language.Rust.Corrode.C,
Language.Rust.Corrode.CFG
ghc-options: -Wall -fwarn-incomplete-uni-patterns -pgmL markdown-unlit
default-language: Haskell2010
build-depends: base >=4.8,
array >= 0.4,
containers >= 0.5,
language-c >=0.4 && <0.6,
markdown-unlit,
pretty,
transformers
executable corrode
main-is: Main.lhs
ghc-options: -Wall -pgmL markdown-unlit
default-language: Haskell2010
build-depends: base >=4.8,
bytestring,
corrode,
filepath,
language-c >=0.4 && <0.6,
markdown-unlit,
pretty,
transformers >=0.2