mirror of
https://github.com/sbrow/risk-multilang.git
synced 2025-12-29 16:37:39 -05:00
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
cabal-version: 2.4
|
|
name: risk
|
|
version: 0.1.0.0
|
|
|
|
-- A short (one-line) description of the package.
|
|
-- synopsis:
|
|
|
|
-- A longer description of the package.
|
|
-- description:
|
|
|
|
-- A URL where users can report bugs.
|
|
-- bug-reports:
|
|
|
|
-- The license under which the package is released.
|
|
-- license:
|
|
author: spencer
|
|
maintainer: brower.spencer@gmail.com
|
|
|
|
-- A copyright notice.
|
|
-- copyright:
|
|
-- category:
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
executable risk
|
|
main-is: Main.hs
|
|
|
|
-- Modules included in this executable, other than Main.
|
|
other-modules: Dice, Risk
|
|
|
|
-- LANGUAGE extensions used by modules in this package.
|
|
-- other-extensions:
|
|
build-depends: base ^>=4.14.1.0, containers, combinat
|
|
hs-source-dirs: app, src
|
|
default-language: Haskell2010
|
|
|
|
Test-Suite test
|
|
type: exitcode-stdio-1.0
|
|
main-is: Spec.hs
|
|
hs-source-dirs: test
|
|
default-language: Haskell2010
|
|
build-depends:
|
|
base >= 4 && < 5,
|
|
tasty >= 1.4.1,
|
|
tasty-hunit,
|
|
tasty-quickcheck,
|
|
tasty-smallcheck |