packages feed

uri-bytestring-0.1: uri-bytestring.cabal

name:                uri-bytestring
version:             0.1
synopsis:            Haskell URI parsing as ByteStrings
description: uri-bytestring aims to be an RFC3986 compliant URI parser that uses efficient ByteStrings for parsing and representing the URI data.
license:             BSD3
license-files:       LICENSE
                   , licenses/http-types/LICENSE
author:              Doug Beardsley, Michael Xavier
maintainer:          Michael Xavier <michael.xavier@soostone.com>
copyright:           Soostone Inc.
category:            Web
build-type:          Simple
cabal-version:       >=1.16
homepage:            https://github.com/Soostone/uri-bytestring
bug-reports:         https://github.com/Soostone/uri-bytestring/issues
extra-source-files:
  README.md
  CONTRIBUTING.md
  changelog.md
  bench/*.hs

library
  exposed-modules:
    URI.ByteString
  other-modules:
    URI.ByteString.Lens
    URI.ByteString.Types
    URI.ByteString.Internal

  build-depends:

      attoparsec       >= 0.10    && < 0.13
    , base             >= 4.6     && < 4.8
    , bytestring       >= 0.10.2.0 && < 0.11

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

  ghc-options: -Wall

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: test
  build-depends:
      uri-bytestring
    , HUnit
    , QuickCheck
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , derive
    , attoparsec
    , base
    , bytestring
    , lens
    , quickcheck-instances
  default-language:    Haskell2010

  ghc-options: -Wall


benchmark bench
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: bench
  default-language:    Haskell2010
  build-depends:
      base
    , uri-bytestring
    , criterion
    , deepseq
    , deepseq-generics
    , network-uri
    , bytestring

source-repository head
  type:     git
  location: git://github.com/Soostone/uri-bytestring.git