Skat Engine und AI auf Haskell Basis
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

64 lignes
1.2KB

  1. name: skat
  2. version: 0.1.0.7
  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. - vector
  33. library:
  34. source-dirs: src
  35. executables:
  36. skat-exe:
  37. main: Main.hs
  38. source-dirs: app
  39. ghc-options:
  40. - -threaded
  41. - -rtsopts
  42. - -with-rtsopts=-N
  43. - -O2
  44. dependencies:
  45. - skat
  46. tests:
  47. skat-test:
  48. main: Spec.hs
  49. source-dirs: test
  50. ghc-options:
  51. - -threaded
  52. - -rtsopts
  53. - -with-rtsopts=-N
  54. - -O2
  55. dependencies:
  56. - skat