minesweeper-haskell/minesweeper.cabal

57 lines
1 KiB
Text
Raw 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-04 00:13:57 +01:00
-- hash: 512c036467601196724c0e9412fc6175989ea1a8c48bf158d2cf62aa1c0b4311
2019-11-24 02:49:57 +01:00
name: minesweeper
version: 0.1.0.0
build-type: Simple
library
exposed-modules:
Lib
other-modules:
Paths_minesweeper
hs-source-dirs:
src/
ghc-options: -Wall
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
, 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/
ghc-options: -Wall
build-depends:
base
, minesweeper
2019-12-04 00:13:57 +01:00
, random
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/
ghc-options: -Wall
build-depends:
base
, minesweeper
, tasty
, tasty-hunit
default-language: Haskell2010