Skat Engine und AI auf Haskell Basis
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

112 líneas
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: e2db48733c92b94d7f2d8f4991dd2f7cec26d59666cd3c618710a8a3c22616d0
  7. name: skat
  8. version: 0.1.0.0
  9. description: Please see the README on GitHub at <https://github.com/githubuser/skat#readme>
  10. homepage: https://github.com/githubuser/skat#readme
  11. bug-reports: https://github.com/githubuser/skat/issues
  12. author: Author name here
  13. maintainer: example@example.com
  14. copyright: 2019 Author name here
  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.Operations
  34. Skat.Pile
  35. Skat.Player
  36. Skat.Player.Utils
  37. Skat.Render
  38. Skat.Utils
  39. Skat.WebSocketServer
  40. other-modules:
  41. Paths_skat
  42. hs-source-dirs:
  43. src
  44. build-depends:
  45. aeson
  46. , base >=4.7 && <5
  47. , bytestring
  48. , case-insensitive
  49. , containers
  50. , deepseq
  51. , mtl
  52. , network
  53. , parallel
  54. , random
  55. , split
  56. , text
  57. , websockets
  58. default-language: Haskell2010
  59. executable skat-exe
  60. main-is: Main.hs
  61. other-modules:
  62. Paths_skat
  63. hs-source-dirs:
  64. app
  65. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  66. build-depends:
  67. aeson
  68. , base >=4.7 && <5
  69. , bytestring
  70. , case-insensitive
  71. , containers
  72. , deepseq
  73. , mtl
  74. , network
  75. , parallel
  76. , random
  77. , skat
  78. , split
  79. , text
  80. , websockets
  81. default-language: Haskell2010
  82. test-suite skat-test
  83. type: exitcode-stdio-1.0
  84. main-is: Spec.hs
  85. other-modules:
  86. Paths_skat
  87. hs-source-dirs:
  88. test
  89. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  90. build-depends:
  91. aeson
  92. , base >=4.7 && <5
  93. , bytestring
  94. , case-insensitive
  95. , containers
  96. , deepseq
  97. , mtl
  98. , network
  99. , parallel
  100. , random
  101. , skat
  102. , split
  103. , text
  104. , websockets
  105. default-language: Haskell2010