Skat Engine und AI auf Haskell Basis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.2KB

  1. name: skat
  2. version: 0.1.0.0
  3. github: "githubuser/skat"
  4. license: BSD3
  5. author: "flavis"
  6. maintainer: "christian@flavigny.de"
  7. copyright: "2019"
  8. extra-source-files:
  9. - README.md
  10. - ChangeLog.md
  11. # Metadata used when publishing your package
  12. # synopsis: Short description of your package
  13. # category: Web
  14. # To avoid duplicated efforts in documentation and dealing with the
  15. # complications of embedding Haddock markup inside cabal files, it is
  16. # common to point users to the README.md file.
  17. description: Please see the README on Gitea at <https://git.flavigny.de/christian/skat>
  18. dependencies:
  19. - base >= 4.7 && < 5
  20. - mtl
  21. - network
  22. - websockets
  23. - split
  24. - bytestring
  25. - text
  26. - random
  27. - deepseq
  28. - aeson
  29. - parallel
  30. - containers
  31. - case-insensitive
  32. library:
  33. source-dirs: src
  34. executables:
  35. skat-exe:
  36. main: Main.hs
  37. source-dirs: app
  38. ghc-options:
  39. - -threaded
  40. - -rtsopts
  41. - -with-rtsopts=-N
  42. dependencies:
  43. - skat
  44. tests:
  45. skat-test:
  46. main: Spec.hs
  47. source-dirs: test
  48. ghc-options:
  49. - -threaded
  50. - -rtsopts
  51. - -with-rtsopts=-N
  52. dependencies:
  53. - skat