packages feed

text-lens-0.1.1: text-lens.cabal

name: text-lens
version: 0.1.1
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2016 Chris Penner
maintainer: christopher.penner@gmail.com
homepage: https://github.com/ChrisPenner/rasa
synopsis: Lenses for operating over text
description:
    Lenses for operating over text
category: Lens
author: Chris Penner

source-repository head
    type: git
    location: https://github.com/ChrisPenner/rasa

library
    exposed-modules:
        Control.Lens.Text
    build-depends:
        base >=4.8 && <5,
        text >=1.2.2.1 && <1.3,
        lens ==4.14.*,
        extra >=1.4.10 && <1.5
    default-language: Haskell2010
    default-extensions: OverloadedStrings
    hs-source-dirs: src
    ghc-options: -Wall

test-suite text-lens-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    build-depends:
        base >=4.9.0.0 && <4.10,
        text-lens >=0.1.1 && <0.2,
        hspec >=2.2.4 && <2.3,
        lens ==4.14.*
    default-language: Haskell2010
    default-extensions: OverloadedStrings
    hs-source-dirs: test
    ghc-options: -threaded -rtsopts -with-rtsopts=-N