-
Notifications
You must be signed in to change notification settings - Fork 0
/
formality-haskell.cabal
103 lines (99 loc) · 2.37 KB
/
formality-haskell.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: formality-haskell
version: 0.1.0.0
homepage: https://gitlab.com/moonad/formality-haskell#readme
author: John C. Burnham
license: MIT
license-file: LICENSE
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Runtime.Net
Core
Lang
Parser
Parser.PreModule
Parser.Lang
Parser.Types
CoreSyn
Check
Pretty
IEEE754
build-depends:
base
, containers
, transformers
, megaparsec
, mtl
, text
, vector
, logict
, equivalence
, cereal
, bytestring
, ieee754
, numeric-extras
default-extensions: OverloadedStrings, MultiWayIf, PatternGuards
--executable fide
-- main-is: Main.hs
-- build-depends:
-- base
-- , containers
-- , transformers
-- , megaparsec
-- , mtl
-- , text
-- , vector
-- , process
-- , repline
-- , haskeline
-- other-modules: Core
-- Lang
-- Fide
-- Check
-- Pretty
-- HaskelineT
-- default-extensions: OverloadedStrings, MultiWayIf, PatternGuards
-- hs-source-dirs: fide src
test-suite test
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Spec.hs
hs-source-dirs: test src
build-depends:
base
, containers
, transformers
, hspec
, QuickCheck
, megaparsec
, text
, vector
, crackNum
, mtl
, ieee754
, cereal
, bytestring
, numeric-extras
, raw-strings-qq
default-extensions: OverloadedStrings, MultiWayIf, PatternGuards
other-modules: Runtime.Net
, Spec.Parser
, Spec.Parser.Lang
, Spec.Parser.PreModule
, Spec.Parser.Utils
, Spec.Net
, Spec.Core
, Core
, CoreSyn
, Lang
, Check
, Pretty
, Parser
, Parser.PreModule
, Parser.Lang
, Parser.Types
, IEEE754