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

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