-- Initial percent-encoder.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: percent-encoder version: 0.0.0.0 synopsis: Percent encode/decode ByteStrings description: a fast percent encoder/decoder for bytestrings homepage: https://github.com/dnmfarrell/Percent-Encoder license: BSD3 license-file: LICENSE author: David Farrell maintainer: davidnmfarrell@gmail.com copyright: David Farrell 2020 category: Network build-type: Simple extra-source-files: ChangeLog.md cabal-version: >=1.10 Tested-With: GHC ==8.8.3 || ==8.6.5 || ==8.4.4 || ==8.2.2 || ==8.0.2 || ==7.10.3 library default-language: Haskell2010 exposed-modules: Percent.Encoder hs-source-dirs: src build-depends: array >= 0.5.1 && < 0.6, base >= 4.8.2 && < 4.14, bytestring >= 0.10.0 && < 0.11 test-suite quick default-language: Haskell2010 hs-source-dirs: tests build-depends: base, bytestring, percent-encoder, QuickCheck, quickcheck-instances ghc-options: -Wall main-is: QuickTests.hs type: exitcode-stdio-1.0 benchmark criterion default-language: Haskell2010 hs-source-dirs: benchmarks build-depends: base, bytestring, criterion, percent-encoder, network-uri ghc-options: -Wall main-is: criterion.hs type: exitcode-stdio-1.0 Source-Repository HEAD Type: git Location: https://github.com/dnmfarrell/Percent-Encoder