Skat Engine und AI auf Haskell Basis
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

127 行
2.4KB

  1. cabal-version: 1.12
  2. -- This file has been generated from package.yaml by hpack version 0.35.0.
  3. --
  4. -- see: https://github.com/sol/hpack
  5. --
  6. -- hash: ad886ff4da12419d3067287c82ddcc50c9a54d9d56bd4d4d640929eac6c0bbc5
  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.Markov
  29. Skat.AI.Minmax
  30. Skat.AI.Online
  31. Skat.AI.Rulebased
  32. Skat.AI.Server
  33. Skat.AI.Stupid
  34. Skat.Bidding
  35. Skat.Card
  36. Skat.Matches
  37. Skat.Operations
  38. Skat.Pile
  39. Skat.Player
  40. Skat.Player.Utils
  41. Skat.Preperation
  42. Skat.Render
  43. Skat.Utils
  44. Skat.WebSocketServer
  45. other-modules:
  46. Paths_skat
  47. hs-source-dirs:
  48. src
  49. build-depends:
  50. aeson
  51. , base >=4.7 && <5
  52. , bytestring
  53. , case-insensitive
  54. , containers
  55. , deepseq
  56. , exceptions
  57. , mtl
  58. , network
  59. , parallel
  60. , random
  61. , split
  62. , text
  63. , transformers
  64. , vector
  65. , websockets
  66. default-language: Haskell2010
  67. executable skat-exe
  68. main-is: Main.hs
  69. other-modules:
  70. TestEnvs
  71. Paths_skat
  72. hs-source-dirs:
  73. app
  74. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  75. build-depends:
  76. aeson
  77. , base >=4.7 && <5
  78. , bytestring
  79. , case-insensitive
  80. , containers
  81. , deepseq
  82. , exceptions
  83. , mtl
  84. , network
  85. , parallel
  86. , random
  87. , skat
  88. , split
  89. , text
  90. , transformers
  91. , vector
  92. , websockets
  93. default-language: Haskell2010
  94. test-suite skat-test
  95. type: exitcode-stdio-1.0
  96. main-is: Spec.hs
  97. other-modules:
  98. Paths_skat
  99. hs-source-dirs:
  100. test
  101. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  102. build-depends:
  103. aeson
  104. , base >=4.7 && <5
  105. , bytestring
  106. , case-insensitive
  107. , containers
  108. , deepseq
  109. , exceptions
  110. , mtl
  111. , network
  112. , parallel
  113. , random
  114. , skat
  115. , split
  116. , text
  117. , transformers
  118. , vector
  119. , websockets
  120. default-language: Haskell2010