Cabal revisions of chart-svg-0.2.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-cabal-version: 2.4-name: chart-svg-version: 0.2.0-synopsis: Charting library targetting SVGs.-description:- This package provides a charting library targetting SVG as the rendered output.- .- == Usage- .- >>> import Chart- >>>- >>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.0, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]- >>> let ls = fmap (PointXY . uncurry Point) <$> xs- >>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1- >>> let lineChart = zipWith Chart anns ls- >>> writeChartSvgHud "other/lineshud.svg" lineChart- .- - .- See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples.--category: charts-homepage: https://github.com/tonyday567/chart-svg#readme-bug-reports: https://github.com/tonyday567/chart-svg/issues-author: Tony Day-maintainer: tonyday567@gmail.com-copyright: Tony Day (c) 2017-license: BSD-3-Clause-license-file: LICENSE-build-type: Simple-extra-doc-files:- other/*.svg--source-repository head- type: git- location: https://github.com/tonyday567/chart-svg--library- exposed-modules:- Chart- Chart.Bar- Chart.Examples- Chart.Reanimate- Chart.Surface- Chart.Render- Chart.Types- Chart.Various- Data.Colour- Data.FormatN- Data.Path- hs-source-dirs:- src- build-depends:- Color >= 0.3 && < 0.4,- JuicyPixels >= 3.3 && < 3.4,- attoparsec >= 0.13 && < 0.14,- base >=4.7 && <5,- cubicbezier >= 0.6 && < 0.7,- foldl >= 1.4 && < 1.5,- generic-lens >= 1.2 && < 3.0,- lens >= 4.0 && < 5,- linear >= 1.21 && < 1.22,- lucid >= 2.9 && < 2.10,- numhask >= 0.7 && < 0.8,- numhask-space >= 0.7 && < 0.8,- reanimate >= 1.1.1.0 && < 1.2,- reanimate-svg >= 0.13 && < 0.14,- scientific >= 0.3 && < 0.4,- tagsoup >= 0.14 && < 0.15,- text >= 1.2 && < 1.3,- time >= 1.9 && < 1.10,- transformers >= 0.5 && < 0.6,- unordered-containers >= 0.2 && < 0.3,- default-language: Haskell2010- default-extensions:- ghc-options:- -Wall- -Wcompat- -Wincomplete-record-updates- -Wincomplete-uni-patterns- -Wredundant-constraints- -fwrite-ide-info- -hiedir=.hie--executable reanimate-example- main-is: reanimate-example.hs- hs-source-dirs:- app- build-depends:- attoparsec >= 0.13 && < 0.14,- JuicyPixels >= 3.3.5 && < 3.4,- base >=4.7 && <5,- bytestring >= 0.10 && < 0.11,- chart-svg,- concurrency >= 1.11 && < 1.12,- foldl >= 1.4 && < 1.5,- lucid >= 2.9 && < 2.10,- lens >= 4.19 && < 4.20,- linear >= 1.21 && < 1.22,- numhask >= 0.7 && < 0.8,- numhask-space >= 0.7 && < 0.8,- reanimate >= 1.1.1.0 && < 1.2,- reanimate-svg >= 0.13 && < 0.14,- text >= 1.2 && < 1.3,- time >= 1.9 && < 1.10,- transformers >= 0.5 && < 0.6,- unordered-containers >= 0.2 && < 0.3,- vector >= 0.12 && < 0.13,- default-language: Haskell2010- default-extensions:- ghc-options:- -Wall- -Wcompat- -Wincomplete-record-updates- -Wincomplete-uni-patterns- -Wredundant-constraints- -funbox-strict-fields- -fwrite-ide-info- -hiedir=.hie--test-suite test- type: exitcode-stdio-1.0- main-is: test.hs- hs-source-dirs:- test- build-depends:- base >=4.7 && <5,- chart-svg,- doctest >= 0.16 && < 0.18,- numhask >= 0.7 && < 0.8,- default-language: Haskell2010- ghc-options:- -Wall- -Wcompat- -Wincomplete-record-updates- -Wincomplete-uni-patterns- -Wredundant-constraints- -fwrite-ide-info- -hiedir=.hie+cabal-version: 2.4 +name: chart-svg +version: 0.2.0 +x-revision: 1 +synopsis: Charting library targetting SVGs. +description: + This package provides a charting library targetting SVG as the rendered output. + . + == Usage + . + >>> import Chart + >>> + >>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.0, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]] + >>> let ls = fmap (PointXY . uncurry Point) <$> xs + >>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1 + >>> let lineChart = zipWith Chart anns ls + >>> writeChartSvgHud "other/lineshud.svg" lineChart + . +  + . + See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples. + +category: charts +homepage: https://github.com/tonyday567/chart-svg#readme +bug-reports: https://github.com/tonyday567/chart-svg/issues +author: Tony Day +maintainer: tonyday567@gmail.com +copyright: Tony Day (c) 2017 +license: BSD-3-Clause +license-file: LICENSE +build-type: Simple +extra-doc-files: + other/*.svg + +source-repository head + type: git + location: https://github.com/tonyday567/chart-svg + +library + exposed-modules: + Chart + Chart.Bar + Chart.Examples + Chart.Reanimate + Chart.Surface + Chart.Render + Chart.Types + Chart.Various + Data.Colour + Data.FormatN + Data.Path + hs-source-dirs: + src + build-depends: + Color >= 0.3 && < 0.4, + JuicyPixels >= 3.3 && < 3.4, + attoparsec >= 0.13 && < 0.14, + base >=4.7 && <5, + cubicbezier >= 0.6 && < 0.7, + foldl >= 1.4 && < 1.5, + generic-lens >= 1.2 && < 3.0, + lens >= 4.0 && < 5, + linear >= 1.21 && < 1.22, + lucid >= 2.9 && < 2.10, + numhask >= 0.7 && < 0.8, + numhask-space >= 0.7 && < 0.8, + reanimate >= 1.1.1.0 && < 1.2, + reanimate-svg >= 0.13 && < 0.14, + scientific >= 0.3 && < 0.4, + tagsoup >= 0.14 && < 0.15, + text >= 1.2 && < 1.3, + time >= 1.9 && < 1.10, + transformers >= 0.5 && < 0.6, + unordered-containers >= 0.2 && < 0.3, + default-language: Haskell2010 + default-extensions: + ghc-options: + -Wall + -Wcompat + -Wincomplete-record-updates + -Wincomplete-uni-patterns + -Wredundant-constraints + -fwrite-ide-info + -hiedir=.hie + +executable reanimate-example + main-is: reanimate-example.hs + hs-source-dirs: + app + build-depends: + attoparsec >= 0.13 && < 0.14, + JuicyPixels >= 3.3.5 && < 3.4, + base >=4.7 && <5, + bytestring >= 0.10 && < 0.11, + chart-svg, + concurrency >= 1.11 && < 1.12, + foldl >= 1.4 && < 1.5, + lucid >= 2.9 && < 2.10, + lens >= 4.19 && < 4.20, + linear >= 1.21 && < 1.22, + numhask >= 0.7 && < 0.8, + numhask-space >= 0.7 && < 0.8, + reanimate >= 1.1.1.0 && < 1.2, + reanimate-svg >= 0.13 && < 0.14, + text >= 1.2 && < 1.3, + time >= 1.9 && < 1.10, + transformers >= 0.5 && < 0.6, + unordered-containers >= 0.2 && < 0.3, + vector >= 0.12 && < 0.13, + default-language: Haskell2010 + default-extensions: + ghc-options: + -Wall + -Wcompat + -Wincomplete-record-updates + -Wincomplete-uni-patterns + -Wredundant-constraints + -funbox-strict-fields + -fwrite-ide-info + -hiedir=.hie + +test-suite test + type: exitcode-stdio-1.0 + main-is: test.hs + hs-source-dirs: + test + build-depends: + base >=4.7 && <5, + chart-svg, + doctest >= 0.16 && < 0.18, + numhask >= 0.7 && < 0.8, + default-language: Haskell2010 + ghc-options: + -Wall + -Wcompat + -Wincomplete-record-updates + -Wincomplete-uni-patterns + -Wredundant-constraints + -fwrite-ide-info + -hiedir=.hie