-
Notifications
You must be signed in to change notification settings - Fork 14
/
svg-builder.cabal
35 lines (33 loc) · 1.44 KB
/
svg-builder.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
name: svg-builder
version: 0.1.1
synopsis: DSL for building SVG.
description: Fast, easy to write SVG.
homepage: https://github.com/diagrams/svg-builder.git
license: BSD3
license-file: LICENSE
author: Jeffrey Rosenbluth
maintainer: [email protected]
copyright: 2016 Jeffrey Rosenbluth
category: Graphics
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1
source-repository head
type: git
location: https://github.com/diagrams/svg-builder.git
library
ghc-options: -Wall -fsimpl-tick-factor=200
exposed-modules: Graphics.Svg,
Graphics.Svg.Core,
Graphics.Svg.Path,
Graphics.Svg.Elements,
Graphics.Svg.Attributes
build-depends: base >= 4.5 && < 4.21,
blaze-builder >= 0.4 && < 0.5,
bytestring >= 0.10 && < 0.13,
hashable >= 1.1 && < 1.6,
text >= 0.11 && < 2.2,
unordered-containers >= 0.2 && < 0.3
hs-source-dirs: src
default-language: Haskell2010