Skat Engine und AI auf Haskell Basis
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

126 řádky
2.4KB

  1. cabal-version: 1.12
  2. -- This file has been generated from package.yaml by hpack version 0.31.2.
  3. --
  4. -- see: https://github.com/sol/hpack
  5. --
  6. -- hash: a2e08e04140990ba90e6d7b70c6bc70b99d073ba723efa9d5e35708995da45e1
  7. name: skat
  8. version: 0.1.0.8
  9. description: Please see the README on Gitea at <https://git.flavigny.de/christian/skat>
  10. homepage: https://github.com/githubuser/skat#readme
  11. bug-reports: https://github.com/githubuser/skat/issues
  12. author: flavis
  13. maintainer: christian@flavigny.de
  14. copyright: 2019
  15. license: BSD3
  16. license-file: LICENSE
  17. build-type: Simple
  18. extra-source-files:
  19. README.md
  20. ChangeLog.md
  21. source-repository head
  22. type: git
  23. location: https://github.com/githubuser/skat
  24. library
  25. exposed-modules:
  26. Skat
  27. Skat.AI.Human
  28. Skat.AI.Minmax
  29. Skat.AI.Online
  30. Skat.AI.Rulebased
  31. Skat.AI.Server
  32. Skat.AI.Stupid
  33. Skat.Bidding
  34. Skat.Card
  35. Skat.Matches
  36. Skat.Operations
  37. Skat.Pile
  38. Skat.Player
  39. Skat.Player.Utils
  40. Skat.Preperation
  41. Skat.Render
  42. Skat.Utils
  43. Skat.WebSocketServer
  44. other-modules:
  45. Paths_skat
  46. hs-source-dirs:
  47. src
  48. build-depends:
  49. aeson
  50. , base >=4.7 && <5
  51. , bytestring
  52. , case-insensitive
  53. , containers
  54. , deepseq
  55. , exceptions
  56. , mtl
  57. , network
  58. , parallel
  59. , random
  60. , split
  61. , text
  62. , transformers
  63. , vector
  64. , websockets
  65. default-language: Haskell2010
  66. executable skat-exe
  67. main-is: Main.hs
  68. other-modules:
  69. TestEnvs
  70. Paths_skat
  71. hs-source-dirs:
  72. app
  73. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  74. build-depends:
  75. aeson
  76. , base >=4.7 && <5
  77. , bytestring
  78. , case-insensitive
  79. , containers
  80. , deepseq
  81. , exceptions
  82. , mtl
  83. , network
  84. , parallel
  85. , random
  86. , skat
  87. , split
  88. , text
  89. , transformers
  90. , vector
  91. , websockets
  92. default-language: Haskell2010
  93. test-suite skat-test
  94. type: exitcode-stdio-1.0
  95. main-is: Spec.hs
  96. other-modules:
  97. Paths_skat
  98. hs-source-dirs:
  99. test
  100. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  101. build-depends:
  102. aeson
  103. , base >=4.7 && <5
  104. , bytestring
  105. , case-insensitive
  106. , containers
  107. , deepseq
  108. , exceptions
  109. , mtl
  110. , network
  111. , parallel
  112. , random
  113. , skat
  114. , split
  115. , text
  116. , transformers
  117. , vector
  118. , websockets
  119. default-language: Haskell2010