hastron/hastron.cabal

51 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-07-08 18:53:08 +05:30
name: hastron
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Abhinav Sarkar
maintainer: abhinav@abhinavsarkar.net
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules:
Hastron.Server.Types
Hastron.Utils
Hastron.Game.Player
Hastron.Game.Types
Hastron.Game.Engine
build-depends:
2015-07-12 19:41:47 +05:30
base >=4.7 && <4.9,
text >=1.2 && <1.3,
unordered-containers >=0.2.5 && <0.3,
hashable >=1.2 && <1.3
2015-07-08 18:53:08 +05:30
executable hastron
main-is: Main.hs
ghc-options: -Wall
build-depends:
base >=4.7 && <4.9,
hastron
2015-07-08 19:37:55 +05:30
default-language: Haskell2010
2015-07-11 12:08:24 +05:30
test-suite test
type: exitcode-stdio-1.0
2015-07-12 19:41:47 +05:30
ghc-options: -Wall
2015-07-11 12:08:24 +05:30
default-language: Haskell2010
hs-source-dirs: tests
2015-07-11 12:08:24 +05:30
main-is: TestMain.hs
build-depends:
base >=4.7 && <4.9,
hastron,
2015-07-11 12:08:24 +05:30
tasty >=0.10 && <0.11,
tasty-hunit >=0.9 && <0.10,
2015-07-12 19:41:47 +05:30
tasty-quickcheck >=0.8 && <0.9,
QuickCheck >=2.8 && <2.9
2015-07-11 12:08:24 +05:30