forked from ondrap/dynamodb-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamodb-simple.cabal
52 lines (49 loc) · 2.47 KB
/
dynamodb-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
name: dynamodb-simple
version: 0.6.0.2
synopsis: Typesafe library for working with DynamoDB database
description: Framework for accessing DynamoDB database. The majority of AWS API
is available to the user in a convenient, simple and typesafe manner.
license: BSD3
license-file: LICENSE
author: Ondrej Palkovsky
maintainer: [email protected]
copyright: Ondrej Palkovsky
homepage: https://github.com/ondrap/dynamodb-simple
bug-reports: https://github.com/ondrap/dynamodb-simple/issues
category: Database
build-type: Simple
extra-source-files: README.md changelog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/ondrap/dynamodb-simple.git
library
exposed-modules: Database.DynamoDB, Database.DynamoDB.Types,
Database.DynamoDB.Filter, Database.DynamoDB.TH,
Database.DynamoDB.Update
other-modules: Database.DynamoDB.Class, Database.DynamoDB.Migration,
Database.DynamoDB.Internal, Database.DynamoDB.BatchRequest,
Database.DynamoDB.QueryRequest, Database.DynamoDB.THLens,
Database.DynamoDB.THContains, Database.DynamoDB.THConvert,
Control.Monad.Supply
build-depends: base >=4.9 && <5, amazonka-dynamodb >= 1.6.0, generics-sop,
unordered-containers, text, lens, double-conversion,
semigroups, bytestring >= 0.10.8.0, containers,
template-haskell, transformers, exceptions,
amazonka, monad-loops, conduit, hashable,
amazonka-core, aeson, vector, scientific,
tagged, uuid-types, mtl
-- hspec, safe-exceptions
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-uni-patterns
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: BaseSpec, NestedSpec
build-depends: base, dynamodb-simple, hspec, text, lens, transformers,
safe-exceptions, amazonka-dynamodb >= 1.6.0, amazonka, conduit,
semigroups, hashable, containers, unordered-containers,
tagged
default-language: Haskell2010
hs-source-dirs: test