-
Notifications
You must be signed in to change notification settings - Fork 15
/
svg-tree.cabal
79 lines (69 loc) · 2.31 KB
/
svg-tree.cabal
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: svg-tree
version: 0.6.2.4
synopsis: SVG file loader and serializer
description:
svg-tree provides types representing a SVG document,
and allows to load and save it.
.
The types definition are aimed at rendering,
so they are rather comple. For simpler SVG document building,
look after `lucid-svg`.
.
To render an svg document you can use the `rasterific-svg` package
license: BSD3
author: Vincent Berthoux
maintainer: Vincent Berthoux
-- copyright:
category: Graphics, Svg
build-type: Simple
cabal-version: >=1.10
extra-source-files: changelog.md
Source-Repository head
Type: git
Location: git://github.com/Twinside/svg-tree.git
Source-Repository this
Type: git
Location: git://github.com/Twinside/svg-tree.git
Tag: v0.6.2.4
library
hs-source-dirs: src
Ghc-options: -O3 -Wall
default-language: Haskell2010
exposed-modules: Graphics.Svg
, Graphics.Svg.CssTypes
, Graphics.Svg.Types
, Graphics.Svg.PathParser
other-modules: Graphics.Svg.NamedColors
, Graphics.Svg.XmlParser
, Graphics.Svg.CssParser
, Graphics.Svg.ColorParser
if impl(ghc >= 8.0)
ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
else
-- provide/emulate `Control.Monad.Fail` and `Data.Semigroups` API for pre-GHC8
build-depends: fail == 4.9.*, semigroups == 0.18.*
build-depends: base >= 4.5 && < 6
, JuicyPixels >= 3.2
, attoparsec >= 0.12
, scientific >= 0.3
, containers >= 0.4
, xml >= 1.3
, bytestring >= 0.10
, linear >= 1.20
, vector >= 0.10
, text >= 1.1
, transformers >= 0.3 && < 0.7
, mtl >= 2.1 && < 2.4
, lens >= 4.6
test-suite test
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends: base
, svg-tree
, attoparsec >= 0.12
, scientific >= 0.3
, linear >= 1.20
, hspec
ghc-options: -Wall -threaded
other-modules: PathParserSpec