svg-builder/svg-builder.cabal
2022-01-08 10:34:53 -06:00

35 lines
1.4 KiB
Text

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: jeffrey.rosenbluth@gmail.com
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.4 || ==9.0.1 || ==9.2.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.17,
blaze-builder >= 0.4 && < 0.5,
bytestring >= 0.10 && < 0.12,
hashable >= 1.1 && < 1.5,
text >= 0.11 && < 2.1,
unordered-containers >= 0.2 && < 0.3
hs-source-dirs: src
default-language: Haskell2010