iohk-challenge/iohk-challenge.cabal

57 lines
1.2 KiB
Plaintext

cabal-version: 3.0
name: iohk-challenge
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: LGPL-3.0-only
author: Julian Ospald
maintainer: hasufell@posteo.de
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
common async
build-depends: async ^>= 2.2.2
common base
build-depends: base ^>= 4.13.0.0
common containers
buid-depends: containers ^>= 0.6.2.1
common doctest
build-depends: doctest ^>= 0.17
common stm
build-depends: stm ^>= 2.5.0.0
common config
default-language: Haskell2010
ghc-options:
-Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates -threaded
default-extensions:
LambdaCase
MultiWayIf
RecordWildCards
ScopedTypeVariables
TupleSections
library
import: config,
async,
base,
containers,
stm
exposed-modules: HDT.Tasks
hs-source-dirs: lib
test-suite doctests
import: config,
async,
base,
doctest
type: exitcode-stdio-1.0
main-is: test/doctest.hs