packages feed

wavefront-obj-0.1.0.0: wavefront-obj.cabal

name: wavefront-obj
version: 0.1.0.0
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2016 Alexis Williams
maintainer: sasinestro@gmail.com
homepage: https://github.com/sasinestro/wavefront-obj#readme
synopsis: Wavefront .obj file loader
description:
    See <https://github.com/SASinestro/wavefront-obj/blob/master/README.md>.
category: Graphics
author: Alexis Williams

source-repository head
    type: git
    location: https://github.com/sasinestro/wavefront-obj

library
    exposed-modules:
        Data.WavefrontObj
    build-depends:
        base >=4.7 && <5,
        containers >=0.5.7.1 && <0.6,
        text >=1.2.0.6 && <1.3,
        transformers >=0.3.0.0 && <0.6,
        attoparsec >=0.12.1.5 && <0.14,
        linear >=1.20.5 && <1.21
    default-language: Haskell2010
    hs-source-dirs: src
    other-modules:
        Data.WavefrontObj.Types
        Data.WavefrontObj.Parsers

test-suite wavefront-obj-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    build-depends:
        base >=4.9.0.0 && <4.10,
        linear >=1.20.5 && <1.21,
        wavefront-obj >=0.1.0.0 && <0.2,
        hspec >=2.1.5 && <2.4
    default-language: Haskell2010
    hs-source-dirs: test
    ghc-options: -threaded -rtsopts -with-rtsopts=-N