minesweeper-haskell/minesweeper.cabal

79 lines
2 KiB
Text
Raw Permalink Normal View History

2019-11-24 02:49:57 +01:00
cabal-version: 1.12
2019-12-04 00:13:57 +01:00
-- This file has been generated from package.yaml by hpack version 0.31.2.
2019-11-24 02:49:57 +01:00
--
-- see: https://github.com/sol/hpack
--
2019-12-10 02:06:09 +01:00
-- hash: e5b75ea7d51fb62c97c99a49ccb242a54d64422d7f1eeb101b67b94c40681c02
2019-11-24 02:49:57 +01:00
name: minesweeper
version: 0.1.0.0
build-type: Simple
library
exposed-modules:
Lib
2019-12-10 02:06:09 +01:00
Minesweeper
Random
Terminal
2019-11-24 02:49:57 +01:00
other-modules:
Paths_minesweeper
hs-source-dirs:
src/
2019-12-10 02:06:09 +01:00
default-extensions: DataKinds FlexibleContexts GADTs LambdaCase PolyKinds RankNTypes ScopedTypeVariables TypeApplications TypeOperators TypeFamilies
ghc-options: -Wall -O2 -flate-specialise -fspecialise-aggressively -fplugin=Polysemy.Plugin
2019-11-24 02:49:57 +01:00
build-depends:
2019-12-04 00:13:57 +01:00
array
, base
2019-11-24 02:49:57 +01:00
, containers
2019-12-04 00:13:57 +01:00
, mtl
2019-12-10 02:06:09 +01:00
, polysemy
, polysemy-plugin
2019-12-04 00:13:57 +01:00
, random
, split
2019-11-24 02:49:57 +01:00
default-language: Haskell2010
executable minesweeper
main-is: Main.hs
other-modules:
Paths_minesweeper
hs-source-dirs:
app/
2019-12-10 02:06:09 +01:00
default-extensions: DataKinds FlexibleContexts GADTs LambdaCase PolyKinds RankNTypes ScopedTypeVariables TypeApplications TypeOperators TypeFamilies
ghc-options: -Wall -O2 -flate-specialise -fspecialise-aggressively -fplugin=Polysemy.Plugin
2019-11-24 02:49:57 +01:00
build-depends:
2019-12-10 02:06:09 +01:00
array
, base
, containers
2019-11-24 02:49:57 +01:00
, minesweeper
2019-12-10 02:06:09 +01:00
, mtl
2019-12-10 00:09:55 +01:00
, optparse-generic
2019-12-10 02:06:09 +01:00
, polysemy
, polysemy-plugin
2019-12-04 00:13:57 +01:00
, random
2019-12-10 02:06:09 +01:00
, split
2019-11-24 02:49:57 +01:00
default-language: Haskell2010
test-suite minesweeper-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_minesweeper
hs-source-dirs:
test/
2019-12-10 02:06:09 +01:00
default-extensions: DataKinds FlexibleContexts GADTs LambdaCase PolyKinds RankNTypes ScopedTypeVariables TypeApplications TypeOperators TypeFamilies
ghc-options: -Wall -O2 -flate-specialise -fspecialise-aggressively -fplugin=Polysemy.Plugin
2019-11-24 02:49:57 +01:00
build-depends:
2019-12-10 02:06:09 +01:00
array
, base
, containers
2019-11-24 02:49:57 +01:00
, minesweeper
2019-12-10 02:06:09 +01:00
, mtl
, polysemy
, polysemy-plugin
, random
, split
2019-11-24 02:49:57 +01:00
, tasty
, tasty-hunit
default-language: Haskell2010