]> gitweb.michael.orlitzky.com - hath.git/blob - hath.cabal
Relax the base version requirement.
[hath.git] / hath.cabal
1 name: hath
2 version: 0.0
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 synopsis:
7 Hath manipulates network blocks in CIDR notation.
8 build-type: Simple
9
10
11 executable hath
12 build-depends:
13 base == 4.*,
14 HUnit == 1.2.*,
15 QuickCheck == 2.4.*
16
17 main-is:
18 Main.hs
19
20 hs-source-dirs:
21 src/
22
23 ghc-options:
24 -Wall
25 -fwarn-hi-shadowing
26 -fwarn-missing-signatures
27 -fwarn-name-shadowing
28 -fwarn-orphans
29 -fwarn-type-defaults
30 -fwarn-tabs
31 -fwarn-incomplete-record-updates
32 -fwarn-monomorphism-restriction
33 -fwarn-unused-do-bind
34 -funbox-strict-fields
35 -fexcess-precision
36 -fno-spec-constr-count
37 -rtsopts
38 -threaded
39 -optc-O3
40 -optc-march=native
41 -O2
42
43 ghc-prof-options:
44 -prof
45 -auto-all
46 -caf-all