packages feed

text-ascii-1.2.1: text-ascii.cabal

cabal-version:      3.0
name:               text-ascii
version:            1.2.1
synopsis:           ASCII string and character processing.
description:
  A total-by-default, tested and documented library for
  working with ASCII text. Low on dependencies, high on usability.

homepage:           https://github.com/haskell-text/text-ascii
license:            Apache-2.0
license-file:       LICENSE.md
author:             Koz Ross
maintainer:         koz.ross@retro-freedom.nz
bug-reports:        https://github.com/haskell-text/text-ascii/issues
copyright:          (C) Koz Ross 2021-3
category:           Text
tested-with:        GHC ==9.4.8 || ==9.6.4 || ==9.8.1
build-type:         Simple
extra-source-files:
  CHANGELOG.md
  README.md

library
  exposed-modules:
    Text.Ascii
    Text.Ascii.Char
    Text.Ascii.Internal
    Text.Ascii.QQ
    Text.Ascii.Unsafe

  build-depends:
    , base               >=4.17  && <5
    , bytestring         ^>=0.12
    , case-insensitive   ^>=1.2
    , deepseq            >=1.4.8 && <1.6.0
    , hashable           ^>=1.4
    , megaparsec         ^>=9.6
    , monoid-subclasses  ^>=1.2
    , optics-core        ^>=0.4
    , optics-extra       ^>=0.4
    , template-haskell   >=2.19  && <3.0
    , text               ^>=2.1

  ghc-options:
    -Wall -Wcompat -Wincomplete-record-updates
    -Wincomplete-uni-patterns -Wredundant-constraints
    -Wmissing-deriving-strategies

  hs-source-dirs:   src
  default-language: Haskell2010