-- Initial svg.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: rasterific-svg version: 0.3.3 synopsis: SVG renderer based on Rasterific. description: SVG renderer that will let you render svg-tree parsed SVG file to a JuicyPixel image or Rasterific Drawing. license: BSD3 license-file: LICENSE author: Vincent Berthoux maintainer: Vincent Berthoux -- copyright: extra-source-files: changelog.md, README.md category: Graphics, Svg build-type: Simple cabal-version: >=1.10 Source-Repository head Type: git Location: git://github.com/Twinside/rasterific-svg.git Source-Repository this Type: git Location: git://github.com/Twinside/rasterific-svg.git Tag: v0.3.3 library hs-source-dirs: src default-language: Haskell2010 Ghc-options: -O3 -Wall -- -auto-all exposed-modules: Graphics.Rasterific.Svg other-modules: Graphics.Rasterific.Svg.RenderContext , Graphics.Rasterific.Svg.PathConverter , Graphics.Rasterific.Svg.MeshConverter , Graphics.Rasterific.Svg.RasterificRender , Graphics.Rasterific.Svg.RasterificTextRendering , Graphics.Rasterific.Svg.ArcConversion build-depends: base >= 4.5 && < 5 , directory , bytestring >= 0.10 , filepath , binary >= 0.7 , scientific >= 0.3 , JuicyPixels >= 3.2 && < 3.3 , containers >= 0.5 , Rasterific >= 0.7 && < 0.8 , FontyFruity >= 0.5.2.1 && < 0.6 , svg-tree >= 0.6.2 && < 0.7 , lens >= 4.5 && < 5 , linear >= 1.20 , vector >= 0.10 , text >= 1.2 , transformers >= 0.3 && < 0.6 , mtl >= 2.1 && < 2.3 , primitive Executable svgrender default-language: Haskell2010 hs-source-dirs: exec-src Main-Is: svgrender.hs Ghc-options: -O3 -Wall Build-Depends: base >= 4.6 , optparse-applicative >= 0.11 && < 0.15 , directory >= 1.0 , bytestring , rasterific-svg , Rasterific , JuicyPixels , filepath , FontyFruity , svg-tree