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
47
48
49
50
51
52
53
54
|
name: wavefront
version: 0.7.1.3
synopsis: Wavefront OBJ loader
description: A Wavefront OBJ loader. Currently supports polygonal information. More could
be added if needed (like curves and surface) if people contribute. Feel free
to help!
homepage: https://github.com/phaazon/wavefront
bug-reports: https://github.com/phaazon/wavefront/issues
license: BSD3
license-file: LICENSE
author: Dimitri Sabadie <dimitri.sabadie@gmail.com>
maintainer: Dimitri Sabadie <dimitri.sabadie@gmail.com>
copyright: Dimitri Sabadie
category: Codec
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/phaazon/wavefront.git
library
ghc-options: -W -Wall
exposed-modules: Codec.Wavefront
, Codec.Wavefront.Element
, Codec.Wavefront.Face
, Codec.Wavefront.IO
, Codec.Wavefront.Location
, Codec.Wavefront.Line
, Codec.Wavefront.Normal
, Codec.Wavefront.Object
, Codec.Wavefront.Point
, Codec.Wavefront.TexCoord
other-modules: Codec.Wavefront.Token
, Codec.Wavefront.Lexer
default-extensions: OverloadedStrings
build-depends: base >= 4.8 && < 4.13
, attoparsec >= 0.13 && < 0.14
, dlist >= 0.7 && < 0.9
, filepath >= 1.4 && < 1.5
, mtl >= 2.2 && < 2.3
, text >= 1.2 && < 1.3
, transformers >= 0.4 && < 0.6
, vector >= 0.11 && < 0.13
hs-source-dirs: src
default-language: Haskell2010
|