File: Chart.cabal

package info (click to toggle)
haskell-chart 1.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 384 kB
  • sloc: haskell: 4,680; makefile: 3
file content (78 lines) | stat: -rw-r--r-- 2,879 bytes parent folder | download
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
Name: Chart
Version: 1.9.5
License: BSD3
License-file: LICENSE
Copyright: Tim Docker, 2006-2014
Author: Tim Docker <tim@dockerz.net>
Maintainer: Tim Docker <tim@dockerz.net>
Homepage: https://github.com/timbod7/haskell-chart/wiki
Synopsis: A library for generating 2D Charts and Plots
Description: A library for generating 2D Charts and Plots, with backends provided by
             Cairo (<http://hackage.haskell.org/package/Chart-cairo>)
             and
             Diagrams (<http://hackage.haskell.org/package/Chart-diagrams>).

             Documentation: https://github.com/timbod7/haskell-chart/wiki.
Category: Graphics
Cabal-Version: 1.18
Build-Type: Simple

library
  default-language: Haskell98
  Build-depends: base >= 3 && < 5
               , old-locale
               , time, array
               , lens >= 3.9 && < 5.3
               , colour >= 2.2.1 && < 2.4
               , data-default-class < 0.2
               , mtl >= 2.0 && < 2.4
               , operational >= 0.2.2 && < 0.3
               , vector >=0.9 && <0.14

  if !impl(ghc >= 8.0)
    build-depends: semigroups >= 0.18.4 && <0.19


  Ghc-options: -Wall -fno-warn-orphans

  Exposed-modules:
        Graphics.Rendering.Chart,
        Graphics.Rendering.Chart.Drawing,
        Graphics.Rendering.Chart.Geometry,
        Graphics.Rendering.Chart.Utils,
        Graphics.Rendering.Chart.Renderable,
        Graphics.Rendering.Chart.Axis,
        Graphics.Rendering.Chart.Axis.Floating,
        Graphics.Rendering.Chart.Axis.Indexed,
        Graphics.Rendering.Chart.Axis.Int,
        Graphics.Rendering.Chart.Axis.Time,
        Graphics.Rendering.Chart.Axis.LocalTime,
        Graphics.Rendering.Chart.Axis.Types,
        Graphics.Rendering.Chart.Axis.Unit,
        Graphics.Rendering.Chart.Layout,
        Graphics.Rendering.Chart.Legend,
        Graphics.Rendering.Chart.Grid,
        Graphics.Rendering.Chart.Plot,
        Graphics.Rendering.Chart.Plot.Types,
        Graphics.Rendering.Chart.Plot.Annotation,
        Graphics.Rendering.Chart.Plot.AreaSpots,
        Graphics.Rendering.Chart.Plot.Bars,
        Graphics.Rendering.Chart.Plot.Candle,
        Graphics.Rendering.Chart.Plot.ErrBars,
        Graphics.Rendering.Chart.Plot.FillBetween,
        Graphics.Rendering.Chart.Plot.Hidden,
        Graphics.Rendering.Chart.Plot.Lines,
        Graphics.Rendering.Chart.Plot.Vectors,
        Graphics.Rendering.Chart.Plot.Pie,
        Graphics.Rendering.Chart.Plot.Points,
        Graphics.Rendering.Chart.Plot.Histogram
        Graphics.Rendering.Chart.SparkLine
        Graphics.Rendering.Chart.Backend
        Graphics.Rendering.Chart.Backend.Impl
        Graphics.Rendering.Chart.Backend.Types
        Graphics.Rendering.Chart.Easy
        Graphics.Rendering.Chart.State
        Numeric.Histogram
source-repository head
  type:     git
  location: https://github.com/timbod7/haskell-chart