mirror of
https://github.com/sbrow/risk-multilang.git
synced 2025-12-30 00:47:39 -05:00
feat: Added Haskell and Go.
This commit is contained in:
46
haskell/risk.cabal
Normal file
46
haskell/risk.cabal
Normal file
@@ -0,0 +1,46 @@
|
||||
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
|
||||
Reference in New Issue
Block a user