-
Notifications
You must be signed in to change notification settings - Fork 0
/
hexdump-lazy.cabal
46 lines (42 loc) · 1.58 KB
/
hexdump-lazy.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
cabal-version: 1.22
name: hexdump-lazy
version: 0.1.0.0
synopsis: Produce hex dumps lazily from various types of source
homepage: https://github.com/neilmayhew/hexdump-lazy
license: MIT
license-file: LICENSE
author: Neil Mayhew
maintainer: [email protected]
copyright: 2020 Neil Mayhew
build-type: Simple
flag werror
description: Use-Werror
default: False
library
hs-source-dirs: src
exposed-modules: Text.HexDump
build-depends: base >=4.8.2.0,
bytestring >=0.10.6.0
default-language: Haskell2010
other-extensions: OverloadedStrings
ghc-options: -Wall -Wcompat
-Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates
if flag(werror)
ghc-options: -Werror
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >=4.8.2.0,
bytestring >=0.10.6.0,
deepseq >= 1.4.1.1,
hspec >= 2.4.3,
process >= 1.4.3.0,
QuickCheck >=2.9.2,
hexdump-lazy
default-language: Haskell2010
other-extensions: OverloadedStrings
ghc-options: -Wall -Wcompat
-Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates
if flag(werror)
ghc-options: -Werror