-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathNeks.cabal
73 lines (68 loc) · 2.59 KB
/
Neks.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
-- Initial Neks.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Neks
version: 0.5.0.0
synopsis: Simple networked key/value store
description: Neks is a fast, simple in-memory key/value server.
license: MIT
license-file: LICENSE
author: William Yager
maintainer: will.yager@gmail.com
-- copyright:
category: Database
build-type: Simple
extra-source-files: Network/Neks/*.hs
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/wyager/Neks.git
executable NeksClient
main-is: Network/Neks/NeksClient.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6,
messagepack >= 0.2.1,
bytestring >= 0.10.4.0,
cereal >= 0.4.1.0,
containers >= 0.5.5.1,
stm >= 2.4.2,
network >= 2.4.2.3,
vector >= 0.10.9.1,
hashable >= 0.1.0.0,
directory >= 1.2.1.0
default-language: Haskell2010
ghc-options: -O2
executable NeksServer
main-is: Network/Neks/NeksServer.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6,
messagepack >= 0.2.1,
bytestring >= 0.10.4.0,
cereal >= 0.4.1.0,
containers >= 0.5.5.1,
stm >= 2.4.2,
network >= 2.4.2.3,
vector >= 0.10.9.1,
hashable >= 0.1.0.0,
directory >= 1.2.1.0
default-language: Haskell2010
ghc-options: -O2 -threaded -with-rtsopts=-N2
library
exposed-modules: Network.Neks.Actions
Network.Neks.DataStore
Network.Neks.Disk
Network.Neks.Message
Network.Neks.NetPack
build-depends: base >=4.6,
messagepack >= 0.2.1,
bytestring >= 0.10.4.0,
cereal >= 0.4.1.0,
containers >= 0.5.5.1,
stm >= 2.4.2,
network >= 2.4.2.3,
vector >= 0.10.9.1,
hashable >= 0.1.0.0,
directory >= 1.2.1.0
default-language: Haskell2010
ghc-options: -O2