packages feed

shapes-math-0.1.0.0: shapes-math.cabal

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

name:           shapes-math
version:        0.1.0.0
synopsis:       faster vector/matrix math using unboxed numbers and Template Haskell
description:    Please see the README on Github at <https://github.com/ublubu/shapes#readme>
category:       Math
homepage:       https://github.com/ublubu/shapes#readme
bug-reports:    https://github.com/ublubu/shapes/issues
author:         Kynan Rilee
maintainer:     kynan.rilee@gmail.com
copyright:      2018 Kynan Rilee
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

source-repository head
  type: git
  location: https://github.com/ublubu/shapes

library
  hs-source-dirs:
      src
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , ghc-prim
    , template-haskell
  exposed-modules:
      Shapes.Linear.Boxed
      Shapes.Linear.Class
      Shapes.Linear.Double
      Shapes.Linear.MatrixTemplate
      Shapes.Linear.Template
      Shapes.Linear.ValueInfos
  other-modules:
      Paths_shapes_math
  default-language: Haskell2010

executable math-bench
  main-is: Main.hs
  hs-source-dirs:
      bench
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , criterion
    , ghc-prim
    , linear
    , shapes-math
    , template-haskell
  other-modules:
      Paths_shapes_math
  default-language: Haskell2010

test-suite math-spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , ghc-prim
    , hspec
    , linear
    , shapes-math
    , template-haskell
  other-modules:
      Shapes.Linear.TemplateSpec
      Paths_shapes_math
  default-language: Haskell2010