-
Notifications
You must be signed in to change notification settings - Fork 2
/
language-csharp.cabal
47 lines (44 loc) · 1.95 KB
/
language-csharp.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
-- Initial language-csharp.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: language-csharp
version: 0.0.1
synopsis: C# source code manipulation
description: A Haskell library containing an abstract syntax, lexer,
parser and pretty printer for C#, aiming to comform the
C# 6.0 draft specification.
license: BSD3
license-file: LICENSE
author: Stefan Koppier
maintainer: [email protected]
copyright: (c) 2019 Stefan Koppier
homepage: https://github.com/StefanKoppier/language-csharp
bug-reports: https://github.com/StefanKoppier/language-csharp/issues
category: Language
build-type: Simple
extra-source-files: ChangeLog.md
stability: Experimental
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/StefanKoppier/language-csharp.git
library
exposed-modules: Language.CSharp.Lexer
, Language.CSharp.Syntax
, Language.CSharp.Pretty
, Language.CSharp.Parser
, Language.CSharp.Parser.Utility
, Language.CSharp.Parser.Declaration
, Language.CSharp.Parser.Statement
, Language.CSharp.Parser.Expression
, Language.CSharp.Parser.Type
, Language.CSharp.Parser.Attribute
build-tools: alex >= 3.2 && < 3.3
default-extensions: TupleSections
build-depends: base >=4.10 && <4.11
, parsec >=3.1 && <3.2
, pretty >=1.1 && <1.2
, array >=0.5 && < 0.6
, text >=1.2 && <1.3
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010