-
Notifications
You must be signed in to change notification settings - Fork 14
/
diagrams-reflex.cabal
48 lines (44 loc) · 1.72 KB
/
diagrams-reflex.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
Name: diagrams-reflex
Version: 0.2
Synopsis: reflex backend for diagrams drawing EDSL.
Homepage: http://projects.haskell.org/diagrams/
License: BSD3
License-file: LICENSE
Extra-source-files: README.md, CHANGELOG.md
Author: Daniel Bergey
Maintainer: [email protected]
Bug-reports: http://github.com/diagrams/diagrams-reflex/issues
Stability: Experimental
Category: Graphics
Build-type: Simple
Cabal-version: >=1.10
Description: This package provides a modular backend for rendering
diagrams created with the diagrams EDSL to dynamic inline SVGs.
It uses @reflex-dom@ and the @reflex@ FRP system.
Source-repository head
type: git
location: http://github.com/diagrams/diagrams-reflex
Library
Exposed-modules: Diagrams.Backend.Reflex
Other-modules: Graphics.Rendering.Reflex, Diagrams.Backend.Reflex.FFI
Hs-source-dirs: src
Build-depends: base
, colour
, containers
, diagrams-core
, diagrams-lib
, jsaddle
, jsaddle-warp
, lens
, mtl
, reflex
, reflex-dom-core
, text
Ghc-options: -Wall
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wmonomorphism-restriction
-fwarn-tabs
Default-language: Haskell2010