-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathloopbreaker.cabal
74 lines (69 loc) · 2.25 KB
/
loopbreaker.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: b56a57a63829e80e77783f285ed80370eb48a4b37fb1c92fa74e2870f29817f2
name: loopbreaker
version: 0.1.1.1
synopsis: inline self-recursive definitions
description: Please see the README file on Github for more info
category: Plugin
homepage: https://github.com/polysemy-research/loopbreaker#readme
bug-reports: https://github.com/polysemy-research/loopbreaker/issues
author: Matej Nižník,
Sandy Maguire
maintainer: [email protected]
copyright: 2019 Matej Nižník,
2019 Sandy Maguire
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/polysemy-research/loopbreaker
library
exposed-modules:
Loopbreaker
other-modules:
Loopbreaker.InlineRecCalls
Loopbreaker.Utils
Paths_loopbreaker
hs-source-dirs:
src
default-extensions: ConstraintKinds FlexibleContexts KindSignatures LambdaCase MultiWayIf NamedFieldPuns OverloadedStrings ScopedTypeVariables TupleSections TypeFamilies UnicodeSyntax ViewPatterns
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, containers >=0.6 && <0.7
, ghc >=8.6 && <8.9
, syb >=0.7 && <0.8
default-language: Haskell2010
test-suite loopbreaker-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
DisableFlagSpec
Experiments
InlineRecCallsSpec
PragmaDetectionSpec
TestUtils
Paths_loopbreaker
hs-source-dirs:
test
default-extensions: ConstraintKinds FlexibleContexts KindSignatures LambdaCase MultiWayIf NamedFieldPuns OverloadedStrings ScopedTypeVariables TupleSections TypeFamilies UnicodeSyntax ViewPatterns
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fplugin=Loopbreaker
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
base >=4.7 && <5
, containers >=0.6 && <0.7
, ghc >=8.6 && <8.9
, hspec >=2.6.1 && <3
, inspection-testing >=0.4.2.1 && <0.5
, loopbreaker
, syb >=0.7 && <0.8
default-language: Haskell2010