diff --git a/hask-chess.cabal b/hask-chess.cabal deleted file mode 100644 index fb68526..0000000 --- a/hask-chess.cabal +++ /dev/null @@ -1,82 +0,0 @@ -cabal-version: 1.12 - --- This file has been generated from package.yaml by hpack version 0.33.0. --- --- see: https://github.com/sol/hpack --- --- hash: e48ee55cfa4e32067f315e9b1e605d91e835d46939b5495eccd42614505ed5be - -name: hask-chess -version: 0.1.0.0 -description: Please see the README on GitHub at -homepage: https://github.com/githubuser/hask-chess#readme -bug-reports: https://github.com/githubuser/hask-chess/issues -author: Author name here -maintainer: example@example.com -copyright: 2021 Author name here -license: BSD3 -license-file: LICENSE -build-type: Simple -extra-source-files: - README.md - ChangeLog.md - -source-repository head - type: git - location: https://github.com/githubuser/hask-chess - -library - exposed-modules: - Board - Evaluation - Fen - GameTree - MoveGen - Uci - other-modules: - Paths_hask_chess - hs-source-dirs: - src - build-depends: - HUnit - , base >=4.7 && <5 - , containers - , mtl - , parsec - , vector - default-language: Haskell2010 - -executable hask-chess-exe - main-is: Main.hs - other-modules: - Paths_hask_chess - hs-source-dirs: - app - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: - HUnit - , base >=4.7 && <5 - , containers - , hask-chess - , mtl - , parsec - , vector - default-language: Haskell2010 - -test-suite hask-chess-test - type: exitcode-stdio-1.0 - main-is: Spec.hs - other-modules: - Paths_hask_chess - hs-source-dirs: - test - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: - HUnit - , base >=4.7 && <5 - , containers - , hask-chess - , mtl - , parsec - , vector - default-language: Haskell2010 diff --git a/package.yaml b/package.yaml index d31a5c8..8e6c2d6 100644 --- a/package.yaml +++ b/package.yaml @@ -1,10 +1,10 @@ -name: hask-chess +name: hen version: 0.1.0.0 -github: "githubuser/hask-chess" +github: "nazrhom/hen" license: BSD3 -author: "Author name here" -maintainer: "example@example.com" -copyright: "2021 Author name here" +author: "Giovanni Garufi" +maintainer: "nazrhom@gmail.com" +copyright: "2021 Giovanni Garufi" extra-source-files: - README.md @@ -31,7 +31,7 @@ library: source-dirs: src executables: - hask-chess-exe: + hen-exe: main: Main.hs source-dirs: app ghc-options: @@ -39,10 +39,10 @@ executables: - -rtsopts - -with-rtsopts=-N dependencies: - - hask-chess + - hen tests: - hask-chess-test: + hen-test: main: Spec.hs source-dirs: test ghc-options: @@ -50,4 +50,4 @@ tests: - -rtsopts - -with-rtsopts=-N dependencies: - - hask-chess + - hen