-
Notifications
You must be signed in to change notification settings - Fork 0
/
packdiff.cabal
56 lines (52 loc) · 1.83 KB
/
packdiff.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
cabal-version: 2.2
-- Initial package description 'packdiff.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: packdiff
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: Apache-2.0
license-file: LICENSE
author: Composewell Technologies
maintainer: [email protected]
copyright: 2022 Composewell Technologies
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
common compile-options
default-language: Haskell2010
ghc-options: -Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-missing-deriving-strategies
-Wno-missing-local-signatures
-Wno-missing-safe-haskell-mode
-Wno-missed-specialisations
-Wno-monomorphism-restriction
-Wno-prepositive-qualified-module
-Wno-unsafe
library
import: compile-options
exposed-modules: HoogleFileParser
, Diff
, Pretty
-- other-extensions:
build-depends: base >= 4.10 && < 4.20
, streamly-core >= 0.1.0
, containers >= 0.6 && < 0.7
hs-source-dirs: src
default-language: Haskell2010
executable packdiff
import: compile-options
main-is: Main.hs
-- other-extensions:
build-depends: base >= 4.10 && < 4.20
, streamly-core >= 0.1.0
, streamly-process == 0.3.1.*
, packdiff
, containers
hs-source-dirs: cli
default-language: Haskell2010