-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
90 lines (85 loc) · 1.76 KB
/
package.yaml
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
name: cdb
version: 0.1
synopsis: Incomplete Azure Cosmos DB client
description: See README
maintainer: Dmitry Malikov <malikov.d.y@gmail.com>
category: Web
license: BSD3
ghc-options:
- -Wall
- -fhide-source-paths
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -fdefer-typed-holes
dependencies:
- base >= 4.10.1
- aeson
- bytestring
- case-insensitive
- http-client
- http-client-tls
- http-types
- safe-exceptions
- text
- time
- unordered-containers
default-extensions:
- DuplicateRecordFields
- GADTs
- OverloadedStrings
- RecordWildCards
- ScopedTypeVariables
- TypeApplications
- ViewPatterns
library:
source-dirs: src
dependencies:
- case-insensitive
- cryptohash-sha256
- mime
- random
- uri-encode
- vector
exposed-modules:
- Network.CosmosDB
- Network.CosmosDB.Auth
- Network.CosmosDB.Client.Collections
- Network.CosmosDB.Client.Databases
- Network.CosmosDB.Client.Documents
- Network.CosmosDB.Core
- Network.CosmosDB.Model.Collection
- Network.CosmosDB.Model.Database
- Network.CosmosDB.Model.IndexingPolicy
- Network.CosmosDB.Request
- Network.Http.Retry
default-extensions:
- DefaultSignatures
- DeriveGeneric
- GeneralizedNewtypeDeriving
- StrictData
tests:
spec:
main: Spec.hs
source-dirs:
- test
- test/spec/
dependencies:
- aeson-qq
- cdb
- hspec
- hspec-expectations
- HUnit
- lens
- lens-aeson
ghc-options:
- -fno-warn-missing-fields
- -threaded
- -with-rtsopts=-N
default-extensions:
- DuplicateRecordFields
- GADTs
- LambdaCase
- OverloadedStrings
- RecordWildCards