-- Initial Rasterific.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: Rasterific version: 0.2 synopsis: A pure haskell drawing engine. -- A longer description of the package. description: <> . Rasterific is a vector drawing library (a rasterizer) implemented in pure haskell license: BSD3 license-file: LICENSE author: Vincent Berthoux maintainer: twinside@gmail.com -- A copyright notice. -- copyright: category: Graphics build-type: Simple -- extra-source-files: cabal-version: >= 1.10 extra-source-files: changelog, docimages/*.png extra-doc-files: docimages/*.png Source-Repository head Type: git Location: git://github.com/Twinside/Rasterific.git Source-Repository this Type: git Location: git://github.com/Twinside/Rasterific.git Tag: v0.2 library hs-source-dirs: src exposed-modules: Graphics.Rasterific , Graphics.Rasterific.Texture , Graphics.Rasterific.Transformations other-modules: Graphics.Rasterific.Line , Graphics.Rasterific.QuadraticBezier , Graphics.Rasterific.CubicBezier , Graphics.Rasterific.Stroke , Graphics.Rasterific.Operators , Graphics.Rasterific.Rasterize , Graphics.Rasterific.Types , Graphics.Rasterific.Compositor ghc-options: -O2 -Wall ghc-prof-options: -Wall -prof -auto-all default-language: Haskell2010 build-depends: base >= 4.6 && < 4.9 , JuicyPixels >= 3.1.5 && < 3.2 , linear >= 1.3.1 && < 1.9 , free >= 4.5 && < 4.6 , FontyFruity >= 0.2 && < 0.3 , vector >= 0.9 , mtl >= 2.1