-
Notifications
You must be signed in to change notification settings - Fork 62
/
diagrams-lib.cabal
134 lines (133 loc) · 6.06 KB
/
diagrams-lib.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
Name: diagrams-lib
Version: 1.2
Synopsis: Embedded domain-specific language for declarative graphics
Description: Diagrams is a flexible, extensible EDSL for creating
graphics of many types. Graphics can be created
in arbitrary vector spaces and rendered with
multiple backends. diagrams-lib provides a
standard library of primitives and operations for
creating diagrams. To get started using it, see
"Diagrams.Prelude".
Homepage: http://projects.haskell.org/diagrams
License: BSD3
License-file: LICENSE
Author: Brent Yorgey
Maintainer: diagrams-discuss@googlegroups.com
Bug-reports: http://github.com/diagrams/diagrams-lib/issues
Category: Graphics
Build-type: Simple
Cabal-version: >=1.10
Extra-source-files: CHANGES.markdown, README.markdown, diagrams/*.svg
Extra-doc-files: diagrams/*.svg
Tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.1
Source-repository head
type: git
location: http://github.com/diagrams/diagrams-lib.git
Library
Exposed-modules: Diagrams.Prelude,
Diagrams.Align,
Diagrams.Angle,
Diagrams.Animation,
Diagrams.Animation.Active,
Diagrams.Attributes,
Diagrams.Attributes.Compile,
Diagrams.Backend.CmdLine,
Diagrams.BoundingBox,
Diagrams.Combinators,
Diagrams.Coordinates,
Diagrams.CubicSpline,
Diagrams.CubicSpline.Internal,
Diagrams.Deform
Diagrams.Direction,
Diagrams.Envelope,
Diagrams.Located,
Diagrams.Names,
Diagrams.Parametric,
Diagrams.Parametric.Adjust,
Diagrams.Path,
Diagrams.Points,
Diagrams.Query,
Diagrams.Segment,
Diagrams.Size,
Diagrams.Solve,
Diagrams.Tangent,
Diagrams.ThreeD,
Diagrams.ThreeD.Align,
Diagrams.ThreeD.Attributes,
Diagrams.ThreeD.Camera,
Diagrams.ThreeD.Deform,
Diagrams.ThreeD.Light,
Diagrams.ThreeD.Shapes,
Diagrams.ThreeD.Size,
Diagrams.ThreeD.Transform,
Diagrams.ThreeD.Types,
Diagrams.ThreeD.Vector,
Diagrams.Trace,
Diagrams.Trail,
Diagrams.TrailLike,
Diagrams.Transform,
Diagrams.Transform.ScaleInv,
Diagrams.TwoD,
Diagrams.TwoD.Adjust,
Diagrams.TwoD.Align,
Diagrams.TwoD.Arc,
Diagrams.TwoD.Arrow,
Diagrams.TwoD.Arrowheads,
Diagrams.TwoD.Attributes,
Diagrams.TwoD.Combinators,
Diagrams.TwoD.Curvature,
Diagrams.TwoD.Deform,
Diagrams.TwoD.Ellipse,
Diagrams.TwoD.Image,
Diagrams.TwoD.Model,
Diagrams.TwoD.Offset,
Diagrams.TwoD.Path,
Diagrams.TwoD.Points,
Diagrams.TwoD.Polygons,
Diagrams.TwoD.Segment,
Diagrams.TwoD.Segment.Bernstein,
Diagrams.TwoD.Size,
Diagrams.TwoD.Shapes,
Diagrams.TwoD.Text,
Diagrams.TwoD.Transform,
Diagrams.TwoD.Types,
Diagrams.TwoD.Vector,
Diagrams.Util
Build-depends: base >= 4.2 && < 4.9,
containers >= 0.3 && < 0.6,
array >= 0.3 && < 0.6,
semigroups >= 0.3.4 && < 0.17,
monoid-extras >= 0.3 && < 0.4,
dual-tree >= 0.2 && < 0.3,
diagrams-core >= 1.2 && < 1.3,
active >= 0.1 && < 0.2,
colour >= 2.3.2 && < 2.4,
data-default-class < 0.1,
fingertree >= 0.1 && < 0.2,
intervals >= 0.7 && < 0.8,
lens >= 4.0 && < 4.8,
tagged >= 0.7,
optparse-applicative >= 0.11 && < 0.12,
filepath,
JuicyPixels >= 3.1.5 && < 3.3,
hashable >= 1.1 && < 1.3,
linear >= 1.11.3 && < 1.17,
adjunctions >= 4.0 && < 5.0,
distributive >=0.2.2 && < 1.0,
process >= 1.1 && < 1.3,
fsnotify >= 0.1 && < 0.2,
directory >= 1.2 && < 1.3,
unordered-containers >= 0.2 && < 0.2.6,
system-filepath >= 0.2 && < 0.5,
text >= 0.7.1 && < 1.3,
mtl >= 2.0 && < 2.3
if impl(ghc < 7.6)
Build-depends: ghc-prim
Hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
other-extensions: BangPatterns, CPP, DefaultSignatures, DeriveDataTypeable,
DeriveFunctor, DeriveGeneric, EmptyDataDecls, ExistentialQuantification,
GADTs, GeneralizedNewtypeDeriving, NoMonomorphismRestriction, Rank2Types,
RankNTypes, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell,
TypeOperators, TypeSynonymInstances, UndecidableInstances, ViewPatterns