Skat Engine und AI auf Haskell Basis
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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