wavefront-0.7.2.0: wavefront.cabal
name: wavefront
version: 0.7.2.0
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://git.sr.ht/~hadronized/wavefront
bug-reports: https://lists.sr.ht/~hadronized/wavefront
license: BSD3
license-file: LICENSE
author: Dimitri Sabadie <hadronized@strongly-typed-thoughts.net>
maintainer: Dimitri Sabadie <hadronized@strongly-typed-thoughts.net>
copyright: Dimitri Sabadie
category: Codec
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >= 1.10
source-repository head
type: git
location: ssh://git.sr.ht/~hadronized/wavefront
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.23
, attoparsec >= 0.13 && < 0.15
, dlist >= 0.7 && < 1.1
, filepath >= 1.4 && < 1.6
, mtl >= 2.2 && < 2.4
, text >= 1.2 && < 2.2
, transformers >= 0.4 && < 0.7
, vector >= 0.11 && < 0.14
hs-source-dirs: src
default-language: Haskell2010