svg-builder/svg-builder.cabal

37 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-02-15 09:41:04 -05:00
name: svg-builder
2018-05-09 23:08:07 -04:00
version: 0.1.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
2023-12-23 12:27:14 -05:00
build-depends: base >= 4.5 && < 4.18,
blaze-builder >= 0.4 && < 0.5,
bytestring >= 0.10 && < 0.13,
hashable >= 1.1 && < 1.5,
text >= 2.0 && < 2.2,
unordered-containers >= 0.2 && < 0.3
2018-01-25 12:11:48 -05:00
if !impl(ghc >= 8.0)
2019-11-02 06:44:37 -04:00
build-depends: semigroups >= 0.16.1 && < 0.20
2016-02-15 09:41:04 -05:00
hs-source-dirs: src
default-language: Haskell2010