-
Notifications
You must be signed in to change notification settings - Fork 1
/
compiler-warnings.cabal
52 lines (48 loc) · 1.25 KB
/
compiler-warnings.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
-- This file has been generated from package.yaml by hpack version 0.14.0.
--
-- see: https://github.com/sol/hpack
name: compiler-warnings
version: 0.1.0
synopsis: Parser for common compiler warning formats
category: Development
homepage: https://github.com/yi-editor/compiler-warnings#readme
bug-reports: https://github.com/yi-editor/compiler-warnings/issues
maintainer: Yi developers <[email protected]>
license: BSD2
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/yi-editor/compiler-warnings
library
hs-source-dirs:
src
ghc-options: -Wall -ferror-spans
build-depends:
base >= 4.8 && < 5
, binary >= 0.7.5
, text >= 1.2
, parsec >= 3.1
exposed-modules:
Text.Warning
other-modules:
Paths_compiler_warnings
default-language: Haskell2010
test-suite tasty
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test
ghc-options: -Wall -ferror-spans
build-depends:
base >= 4.8 && < 5
, binary >= 0.7.5
, text >= 1.2
, parsec >= 3.1
, tasty
, tasty-th
, tasty-hunit
, tasty-quickcheck
, text
, compiler-warnings
default-language: Haskell2010