packages feed

yx-0.0.1.0: yx.cabal

name:                yx
version:             0.0.1.0
synopsis:            Row-major coordinates
description:         https://github.com/mtth/yx
homepage:            https://github.com/mtth/yx
license:             BSD3
license-file:        LICENSE
author:              Matthieu Monsch
maintainer:          matthieu.monsch@gmail.com
copyright:           2018 Matthieu Monsch
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Geometry.YX
  build-depends:       base >= 4.7 && < 5
                     , array >= 0.5
                     , bytestring >= 0.10
  default-language:    Haskell2010

test-suite yx-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , array >= 0.5
    , bytestring >= 0.10
    , hspec >=2.5 && <2.6
    , yx
  default-language: Haskell2010

source-repository head
  type:     git
  location: https://github.com/mtth/yx