-
Notifications
You must be signed in to change notification settings - Fork 3
/
couch-simple.cabal
97 lines (94 loc) · 3.31 KB
/
couch-simple.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
author: Michael Alan Dorman
bug-reports: https://github.com/mdorman/couch-simple/issues
build-type: Custom
cabal-version: >= 1.10
category: Database
copyright: Copyright (c) 2015, Michael Alan Dorman
description: Based on http-client, with intended extensions for streaming through Conduit and other libraries.
extra-source-files: test/schema/schema/*.json
*.txt
homepage: https://github.com/mdorman/couch-simple
license-file: LICENSE
license: MIT
maintainer: mdorman@jaunder.io
name: couch-simple
synopsis: A modern, lightweight, complete client for CouchDB
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
version: 0.0.1.1
source-repository head
type: git
location: https://github.com/mdorman/couch-simple.git
library
build-depends: base >= 4.6 && < 4.10
, aeson >= 0.9
, attoparsec
, bifunctors
, bytestring
, data-default
, exceptions
, http-client < 0.5
, http-types
, integer-gmp
, mtl
, text
, transformers >= 0.4
, unordered-containers
, uuid
, vector
default-language: Haskell2010
exposed-modules: Database.Couch
Database.Couch.Explicit
Database.Couch.Explicit.Configuration
Database.Couch.Explicit.Database
Database.Couch.Explicit.Design
Database.Couch.Explicit.DocBase
Database.Couch.Explicit.Doc
Database.Couch.Explicit.Local
Database.Couch.Explicit.Server
Database.Couch.Internal
Database.Couch.RequestBuilder
Database.Couch.Response
Database.Couch.ResponseParser
Database.Couch.Types
ghc-options: -Wall
hs-source-dirs: src/lib
if impl(ghc < 7.8)
build-depends: bytestring-builder
test-suite test
build-depends: aeson
, base >= 4.6 && < 4.10
, bytestring
, couch-simple
, data-default
, directory
, exceptions
, filepath
, hjsonschema == 0.10.*
, hlint == 1.*
, http-client >= 0.4.30 && < 0.5
, http-types
, random
, tasty
, tasty >= 0.10.1.2
, tasty-hunit
, text
, transformers >= 0.4
, unordered-containers
, uuid
build-tools: couchdb
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: test
main-is: Main.hs
other-modules: Functionality
Functionality.Explicit.Configuration
Functionality.Explicit.Database
Functionality.Explicit.Design
Functionality.Explicit.Doc
Functionality.Explicit.Local
Functionality.Explicit.Server
Functionality.Internal
Functionality.Util
Quality
Quality.HLint
type: exitcode-stdio-1.0