-
Notifications
You must be signed in to change notification settings - Fork 1
/
edis.cabal
46 lines (44 loc) · 1.67 KB
/
edis.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
name: edis
version: 0.0.1.0
synopsis:
Statically typechecked client for Redis
description:
This library is a Haskell client for the Redis datastore built on top of
Hedis, with stronger type-level guarantees.
.
For detailed documentation, see the "Database.Edis" module.
.
license: MIT
license-file: LICENSE
author: Ting-Yan Lai
maintainer: [email protected]
copyright: Copyright (c) 2015 Ting-Yan Lai
category: Database
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/banacorn/edis
library
exposed-modules: Database.Edis
other-modules: Database.Edis.Type
, Database.Edis.Helper
, Database.Edis.Command
, Database.Edis.Command.Key
, Database.Edis.Command.String
, Database.Edis.Command.List
, Database.Edis.Command.Hash
, Database.Edis.Command.Set
, Database.Edis.Command.ZSet
, Database.Edis.Command.Server
, Database.Edis.Command.Connection
, Database.Edis.Command.Scripting
, Database.Edis.Command.PubSub
build-depends: base >=4.8 && <5
, bytestring >=0.10
, hedis >=0.6
, cereal >=0.4
hs-source-dirs: src/
default-language: Haskell2010
GHC-Options: -Wall