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.

65 lignes
1.3KB

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