packages feed

connection-string-0.1.0.0: connection-string.cabal

name:                connection-string
version:             0.1.0.0
synopsis:            A library for parsing connection strings.
description:
    Parses connection strings in a manner that agrees with
    the format that .NET accepts (e.g. ADO.NET).
homepage:            https://github.com/Porges/connection-string
license:             BSD3
license-file:        LICENSE
author:              George Pollard <porges@porg.es>
maintainer:          George Pollard <porges@porg.es>
copyright:           2018 George Pollard
category:            Text
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md

source-repository head
    type: git
    location: git://github.com/Porges/connection-string-hs.git

source-repository this
    type: git
    location: git://github.com/Porges/connection-string-hs.git
    tag: v0.1.0.0

library
  exposed-modules:   Data.ConnectionString
  hs-source-dirs:    src
  ghc-options:       -Wall
  default-language:  Haskell2010
  build-depends:     base >= 4.7 && < 5
                   , containers
                   , megaparsec
                   , parser-combinators

test-suite doctests
  type: exitcode-stdio-1.0
  ghc-options: -threaded
  default-language: Haskell2010
  hs-source-dirs: tests
  main-is: doctests.hs
  build-depends:
    base >= 4 && < 5,
    doctest >= 0.8 && < 0.15,
    text