cabal-version: 1.12

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

name:           linear-tests
version:        0.1.2.0
synopsis:       Linear Algebra
description:    Please see the README on GitHub at <https://github.com/pdlla/linear-tests#readme>
category:       Math, Algebra, Testing
homepage:       https://github.com/pdlla/linear-tests#readme
bug-reports:    https://github.com/pdlla/linear-tests/issues
author:         pdlla
maintainer:     chippermonky@gmail.com
copyright:      2020 pdlla
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/pdlla/linear-tests

library
  exposed-modules:
      Linear.Arbitrary
      Linear.Matrix.Arbitrary
      Linear.Quaternion.Arbitrary
      Linear.V3.Arbitrary
      Linear.V4.Arbitrary
  other-modules:
      Paths_linear_tests
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , lens
    , linear
  default-language: Haskell2010

test-suite linear-tests-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Linear.MatrixSpec
      Linear.QuaternionSpec
      Linear.V3Spec
      Linear.V4Spec
      Paths_linear_tests
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , hspec
    , hspec-core
    , lens
    , linear
    , linear-tests
  default-language: Haskell2010