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.

114 line
2.2KB

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