forked from beketa/haskell-memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemcached.cabal
36 lines (31 loc) · 904 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
name: memcached
version: 0.2.1
stability: Alpha
synopsis: haskell bindings for memcached
description: haskell bindings for memcached
category: Network
license: OtherLicense
license-file: LICENSE
author: Evan Martin <[email protected]>
maintainer: Janrain <[email protected]>
homepage: http://github.com/olegkat/haskell-memcached
build-type: Simple
tested-with: GHC==6.8.2, GHC==6.10, GHC==7.6.3
build-depends:
base >3 && <5,
network,
bytestring >=0.9 && <0.10.1,
utf8-light >=0.4 && <1.0
extra-source-files:
Setup.hs,
Test.hs,
Demo.lhs,
ChangeLog,
NEWS
exposed-modules:
Network.Memcache,
Network.Memcache.Protocol,
Network.Memcache.Serializable,
Network.Memcache.ServerPool,
Network.Memcache.Key
ghc-prof-options: -prof -auto-all