hgraph/hgraph.cabal
tpajenka 9d839ecd74 cleared not needed dependencies, improved parseAttr (it now checks for NaN as
well and is thus slower), added strict evaluation of parsed data
structures
2014-01-12 13:33:01 +01:00

56 lines
1.7 KiB
Plaintext

name: hgraph
version: 0.0.1
cabal-version: >= 1.2
build-type: Simple
license: AllRightsReserved
license-file: ""
description:
data-dir: ""
executable hgraph
build-depends:
QuickCheck -any,
base -any,
bytestring -any,
deepseq -any,
ghc -any,
monad-par >=0.3.4,
parallel -any,
repa >=3.2,
transformers >=0.3.0,
vector >=0.7,
mtl >=2.1 && <3,
containers >=0.5.0 && <0.6,
base >=4.6.0 && <4.7
main-is: Main.hs
buildable: True
hs-source-dirs: src
other-modules:
Util,
DCB.DCB,
DCB.Structures,
DCB.IO
ghc-options: -eventlog -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3
extensions:
BangPatterns,
DoAndIfThenElse
test-suite test-hgraph
build-depends:
QuickCheck -any,
base -any, bytestring -any, deepseq -any, ghc -any,
monad-par >=0.3.4, parallel -any, repa >=3.2,
containers >=0.5.0 && <0.6,
base >=4.6.0 && <4.7
type: exitcode-stdio-1.0
main-is: Main.hs
buildable: True
cpp-options: -DMAIN_FUNCTION=testMain
hs-source-dirs: src
ghc-options: -threaded -rtsopts -eventlog
other-modules:
Util,
DCB.Structures,
DCB.DCB,
DCB.IO