packages feed

chessIO-0.0.0.0: chessIO.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: bce4c13865f7d91aaf5bc6807f962a6263a4f6ccd6ccea79504ebac4a9f53f64

name:           chessIO
version:        0.0.0.0
description:    A simple chess move generation library
homepage:       https://github.com/mlang/chessIO#readme
bug-reports:    https://github.com/mlang/chessIO/issues
author:         Mario Lang
maintainer:     mlang@blind.guru
copyright:      2019 Mario Lang
license:        BSD3
license-file:   LICENSE
build-type:     Simple

source-repository head
  type: git
  location: https://github.com/mlang/chessIO

library
  exposed-modules:
      Game.Chess
  other-modules:
      Game.Debug
      Paths_chessIO
  hs-source-dirs:
      src
  default-extensions: BangPatterns BinaryLiterals DeriveGeneric NamedFieldPuns NumericUnderscores TupleSections ViewPatterns
  ghc-options: -Wall -O2
  build-depends:
      base >=4.8 && <5
    , vector
  default-language: Haskell2010

test-suite perft
  type: exitcode-stdio-1.0
  main-is: Perft.hs
  other-modules:
      Paths_chessIO
  hs-source-dirs:
      test
  default-extensions: BangPatterns BinaryLiterals DeriveGeneric NamedFieldPuns NumericUnderscores TupleSections ViewPatterns
  ghc-options: -Wall -O2 -threaded -rtsopts "-with-rtsopts=-N -s"
  build-depends:
      base >=4.8 && <5
    , chessIO
    , directory
    , parallel
    , time
    , vector
  default-language: Haskell2010