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.

66 lignes
1.3KB

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