summaryrefslogtreecommitdiff
path: root/wavefront-obj.cabal
blob: d4df055afe1bb5328593c49b076e05f3df632899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cabal-version:       >=1.10
name:                wavefront-obj
version:             0.1.0.0
synopsis:            Wavefront OBJ parser
-- description:
-- bug-reports:
license:             BSD3
license-file:        LICENSE
author:              Joe Crayne
maintainer:          joe@jerkface.net
-- copyright:
category:            Graphics
build-type:          Simple
extra-source-files:  CHANGELOG.md

library
  exposed-modules:    Wavefront.Lex
                    , Data.Wavefront
                    , Wavefront
  -- other-modules:
  other-extensions:   ConstraintKinds
                    , DeriveFunctor
                    , FlexibleContexts
                    , FlexibleInstances
                    , KindSignatures
                    , MultiParamTypeClasses
                    , NondecreasingIndentation
                    , OverloadedStrings
                    , PatternSynonyms
                    , RankNTypes
                    , StandaloneDeriving
                    , UndecidableInstances

  build-depends:      base >=4.11 && <4.12
                    , containers >=0.5 && <0.6
                    , text >=1.2 && <1.3
                    , vector >=0.12 && <0.13
                    , dlist >=0.8 && <0.9
                    , transformers >=0.5 && <0.6
                    , mtl >=2.2 && <2.3
                    , bytestring
                    , bytestring-lexing
                    , rank2classes

  hs-source-dirs:      src
  default-language:    Haskell2010