packages feed

reflex-dom-svg-0.3.2.0: reflex-dom-svg.cabal

name:                reflex-dom-svg
version:             0.3.2.0
synopsis:            Reflex functions for SVG elements.
description:         Provides support for easily creating and manipulating SVG elements via Reflex.
license:             BSD3
license-file:        LICENCE
author:              Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
maintainer:          Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
copyright:           Copyright (c) 2018, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.
category:            FRP,Web,Graphics
build-type:          Simple
extra-source-files:  changelog.md, README.md
cabal-version:       1.24

source-repository   head
  type:             git
  location:         git@github.com/qfpl/reflex-dom-svg/reflex-dom-svg.git

library
  ghc-options:         -Wall

  exposed-modules:     Reflex.Dom.Widget.SVG
                     , Reflex.Dom.Widget.SVG.Types
                     , Reflex.Dom.Widget.SVG.Types.Internal
                     , Reflex.Dom.Widget.SVG.Types.Pos
                     , Reflex.Dom.Widget.SVG.Types.CornerRadius
                     , Reflex.Dom.Widget.SVG.Types.Radius
                     , Reflex.Dom.Widget.SVG.Types.SVG_Path
                     , Reflex.Dom.Widget.SVG.Types.SVG_Rect
                     , Reflex.Dom.Widget.SVG.Types.SVG_Circle
                     , Reflex.Dom.Widget.SVG.Types.SVG_Ellipse
                     , Reflex.Dom.Widget.SVG.Types.SVG_Line
                     , Reflex.Dom.Widget.SVG.Types.SVG_Polygon
                     , Reflex.Dom.Widget.SVG.Types.SVG_PolyLine
                     , Reflex.Dom.Widget.SVG.Types.SVG_Animate

  build-depends:       base >=4.9 && <=4.12
                     , text >= 1.2 && < 1.3
                     , reflex >= 0.4 && < 0.7
                     , reflex-dom-core >= 0.5 && < 0.7
                     , lens >= 4.16.1 && < 4.17
                     , containers == 0.5.*
                     , safe == 0.3.*

  hs-source-dirs:      src

  default-language:    Haskell2010