svg-builder/svg-builder.cabal

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-02-15 09:41:04 -05:00
name: svg-builder
2016-10-12 09:43:19 -04:00
version: 0.1.0.2
2017-06-16 17:16:43 -04:00
x-revision: 1
2016-02-15 09:41:04 -05:00
synopsis: DSL for building SVG.
description: Fast, easy to write SVG.
2017-06-16 17:16:43 -04:00
homepage: https://github.com/diagrams/svg-builder.git
2016-02-15 09:41:04 -05:00
license: BSD3
license-file: LICENSE
author: Jeffrey Rosenbluth
maintainer: jeffrey.rosenbluth@gmail.com
copyright: 2016 Jeffrey Rosenbluth
category: Graphics
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
2017-06-16 17:16:43 -04:00
source-repository head
type: git
location: https://github.com/diagrams/svg-builder.git
2016-02-15 09:41:04 -05:00
library
2016-10-12 09:43:19 -04:00
ghc-options: -Wall -fsimpl-tick-factor=200
2016-02-15 09:41:04 -05:00
exposed-modules: Graphics.Svg,
Graphics.Svg.Core,
Graphics.Svg.Path,
Graphics.Svg.Elements,
Graphics.Svg.Attributes
2017-06-16 17:16:43 -04:00
build-depends: base >= 4.5 && < 4.11,
2016-02-15 09:41:04 -05:00
blaze-builder >= 0.4 && < 0.5,
bytestring >= 0.10 && < 0.11,
2016-02-18 13:59:38 -05:00
hashable >= 1.1 && < 1.3,
2016-02-15 09:41:04 -05:00
text >= 0.11 && < 1.3,
2016-02-18 13:59:38 -05:00
unordered-containers >= 0.2 && < 0.3
2016-02-15 09:41:04 -05:00
hs-source-dirs: src
default-language: Haskell2010