cabal-version: 3.0 name: text-ascii version: 1.0.0 x-revision: 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/kozross/text-ascii license: Apache-2.0 license-file: LICENSE.md author: Koz Ross maintainer: koz.ross@retro-freedom.nz bug-reports: https://github.com/kozross/text-ascii/issues copyright: (C) Koz Ross 2021 category: Text tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.3 build-type: Simple extra-source-files: CHANGELOG.md README.md library exposed-modules: Text.Ascii Text.Ascii.Char other-modules: Text.Ascii.Internal Text.Ascii.QQ build-depends: , base >=4.12 && <5 , bytestring ^>=0.11.0.0 , deepseq ^>=1.4.0.0 , hashable ^>=1.3.0.0 , optics-core ^>=0.3.0.0 , parsec ^>=3.1.14.0 , template-haskell >=2.14.0.0 && <3.0.0.0 , text ^>=1.2.4.1 ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints if flag(dev) ghc-options: -Werror hs-source-dirs: src default-language: Haskell2010 flag dev description: Always use this during development! manual: True default: False