Skat Engine und AI auf Haskell Basis
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

120 linhas
2.3KB

  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: 0b9b42e767fdfcdc821bfc31f5c002e1f6752ba6af032ff402339ef667f60209
  7. name: skat
  8. version: 0.1.0.1
  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. , mtl
  56. , network
  57. , parallel
  58. , random
  59. , split
  60. , text
  61. , vector
  62. , websockets
  63. default-language: Haskell2010
  64. executable skat-exe
  65. main-is: Main.hs
  66. other-modules:
  67. TestEnvs
  68. Paths_skat
  69. hs-source-dirs:
  70. app
  71. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  72. build-depends:
  73. aeson
  74. , base >=4.7 && <5
  75. , bytestring
  76. , case-insensitive
  77. , containers
  78. , deepseq
  79. , mtl
  80. , network
  81. , parallel
  82. , random
  83. , skat
  84. , split
  85. , text
  86. , vector
  87. , websockets
  88. default-language: Haskell2010
  89. test-suite skat-test
  90. type: exitcode-stdio-1.0
  91. main-is: Spec.hs
  92. other-modules:
  93. Paths_skat
  94. hs-source-dirs:
  95. test
  96. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  97. build-depends:
  98. aeson
  99. , base >=4.7 && <5
  100. , bytestring
  101. , case-insensitive
  102. , containers
  103. , deepseq
  104. , mtl
  105. , network
  106. , parallel
  107. , random
  108. , skat
  109. , split
  110. , text
  111. , vector
  112. , websockets
  113. default-language: Haskell2010