-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreanimate-svg.cabal
87 lines (79 loc) · 2.87 KB
/
reanimate-svg.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
80
81
82
83
84
85
86
87
cabal-version: 2.2
name: reanimate-svg
version: 0.13.0.1
synopsis: SVG file loader and serializer
description:
`reanimate-svg` provides types representing a SVG document,
and allows you to load and save it.
.
The types defined are aimed at rendering,
so they are rather complex. For simpler SVG document building,
see the `lucid-svg` package.
license: BSD-3-Clause
license-file: LICENSE
author: Vincent Berthoux, David Himmelstrup
maintainer: David Himmelstrup <[email protected]>
homepage: https://github.com/reanimate/reanimate-svg#readme
-- copyright:
category: Graphics, Svg
build-type: Simple
extra-source-files: changelog.md, test/good/*.svg, test/bad/*.svg, test/other/*.svg
Source-Repository head
Type: git
Location: git://github.com/reanimate/reanimate-svg.git
library
hs-source-dirs: src
ghc-options: -Wall -fsimpl-tick-factor=300
default-language: Haskell2010
exposed-modules: Graphics.SvgTree
, Graphics.SvgTree.CssTypes
, Graphics.SvgTree.Types
, Graphics.SvgTree.PathParser
, Graphics.SvgTree.NamedColors
, Graphics.SvgTree.Memo
, Graphics.SvgTree.Printer
other-modules: Graphics.SvgTree.XmlParser
, Graphics.SvgTree.CssParser
, Graphics.SvgTree.ColorParser
, Graphics.SvgTree.Misc
, Graphics.SvgTree.Types.Hashable
, Graphics.SvgTree.Types.Basic
, Graphics.SvgTree.Types.Fold
, Graphics.SvgTree.Types.Internal
, Graphics.SvgTree.Types.Constructors
, Graphics.SvgTree.Types.Instances
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.6
, mtl >= 2.1 && < 2.3
, lens >= 4.6 && < 6
, double-conversion >= 2.0.0.0 && < 3.0.0.0
, hashable >= 1.3.0.0
test-suite w3c-spec
type: exitcode-stdio-1.0
main-is: W3C.hs
default-language: Haskell2010
other-modules:
hs-source-dirs: test
ghc-options: -w
build-depends:
base,
directory,
filepath,
bytestring, process,
reanimate-svg,
Diff,
vector, linear,
QuickCheck >= 2.1.0, text,
temporary, typed-process,
tasty, tasty-golden, tasty-hunit,
tasty-quickcheck, tasty-rerun >= 1.1.17,
tasty-expected-failure