packages feed

colour-text-0.0.0.1: colour-text.cabal

cabal-version: 3.0

name: colour-text
version: 0.0.0.1
category: Graphics, Text
synopsis: Print and parse colors

description:
    Provides functions to render and parse color values as text.

license: Apache-2.0
license-file: license.txt

author: Chris Martin
maintainer: Chris Martin, Julie Moronuki

homepage: https://github.com/typeclasses/colour-text
bug-reports: https://github.com/typeclasses/colour-text/issues

extra-source-files: *.md

common base
    default-language: Haskell2010
    ghc-options: -Wall
    default-extensions:
        BlockArguments
        OverloadedStrings
        ScopedTypeVariables
    build-depends:
      , base ^>= 4.18 || ^>= 4.19
      , colour ^>= 2.3.6
      , text ^>= 2.0 || ^>= 2.1

library
    import: base
    hs-source-dirs: library
    exposed-modules: Colour.Text.CssRgb

test-suite test-colour-text
    import: base
    type: exitcode-stdio-1.0
    hs-source-dirs: test
    main-is: Main.hs
    build-depends:
      , colour-text
      , hedgehog ^>= 1.4
      , hspec ^>= 2.8.5 || ^>= 2.9 || ^>= 2.10 || ^>= 2.11
      , hspec-hedgehog ^>= 0.1