-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection-string.cabal
48 lines (43 loc) · 1.37 KB
/
connection-string.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: connection-string
version: 0.2.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-hs
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.2.0.0
library
exposed-modules: Data.ConnectionString
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, case-insensitive
, 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