forked from olegkat/haskell-memcached
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmemcached.cabal
37 lines (32 loc) · 955 Bytes
/
memcached.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
name: memcached
version: 0.2.3
stability: Alpha
synopsis: Haskell Memcached client
description: Haskell Memcached client
category: Network
license: OtherLicense
license-file: LICENSE
author: John Hann <[email protected]>
maintainer: John Hann <[email protected]>
homepage: http://github.com/nowaitapp/haskell-memcached
build-type: Simple
tested-with: GHC==7.10.2
build-depends:
base >3 && <5,
network,
time >=1 && <2,
bytestring >=0.9 && <0.11,
utf8-light >=0.4 && <1.0
extra-source-files:
Setup.hs
exposed-modules:
Network.Memcached,
Network.Memcached.Server,
Network.Memcached.Memcached,
Network.Memcached.Protocol,
Network.Memcached.Serializable,
Network.Memcached.Key,
Network.Memcached.Cluster,
Network.Memcached.Helpers
ghc-options: -Wall
ghc-prof-options: -prof -auto-all