Skat Engine und AI auf Haskell Basis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
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: 895218d6f377b3f153114174aa1ff9de34b3afa1b38042608421753054da7e2c
  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.Render
  41. Skat.Utils
  42. Skat.WebSocketServer
  43. other-modules:
  44. Paths_skat
  45. hs-source-dirs:
  46. src
  47. build-depends:
  48. aeson
  49. , base >=4.7 && <5
  50. , bytestring
  51. , case-insensitive
  52. , containers
  53. , deepseq
  54. , mtl
  55. , network
  56. , parallel
  57. , random
  58. , split
  59. , text
  60. , vector
  61. , websockets
  62. default-language: Haskell2010
  63. executable skat-exe
  64. main-is: Main.hs
  65. other-modules:
  66. TestEnvs
  67. Paths_skat
  68. hs-source-dirs:
  69. app
  70. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  71. build-depends:
  72. aeson
  73. , base >=4.7 && <5
  74. , bytestring
  75. , case-insensitive
  76. , containers
  77. , deepseq
  78. , mtl
  79. , network
  80. , parallel
  81. , random
  82. , skat
  83. , split
  84. , text
  85. , vector
  86. , websockets
  87. default-language: Haskell2010
  88. test-suite skat-test
  89. type: exitcode-stdio-1.0
  90. main-is: Spec.hs
  91. other-modules:
  92. Paths_skat
  93. hs-source-dirs:
  94. test
  95. ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
  96. build-depends:
  97. aeson
  98. , base >=4.7 && <5
  99. , bytestring
  100. , case-insensitive
  101. , containers
  102. , deepseq
  103. , mtl
  104. , network
  105. , parallel
  106. , random
  107. , skat
  108. , split
  109. , text
  110. , vector
  111. , websockets
  112. default-language: Haskell2010