forked from wyager/Neks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Neks.cabal
108 lines (102 loc) · 3.85 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
-- Initial Neks.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Neks
version: 0.6.1
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/WolframKahl/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,
utf8-string >= 1.0.1.1,
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,
time >= 1.5.0,
directory >= 1.2.1.0,
ghc >= 7.10.3
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,
time >= 1.5.0,
unix >= 2.7.1,
options >= 1.2.1.1
default-language: Haskell2010
ghc-options: -O2 -threaded -with-rtsopts=-N2
executable NeksCat
main-is: Network/Neks/NeksCat.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,
time >= 1.5.0,
directory >= 1.2.1.0
default-language: Haskell2010
ghc-options: -O2 -threaded -with-rtsopts=-N2
-Wall
-fno-warn-orphans
-fwarn-incomplete-patterns
-fwarn-unused-imports
library
exposed-modules: Network.Neks.Actions
Network.Neks.DataStore
Network.Neks.Disk
Network.Neks.Message
Network.Neks.NetPack
Network.Neks.Client
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,
time >= 1.5.0,
directory >= 1.2.1.0,
ghc >= 7.10.3
default-language: Haskell2010
ghc-options: -O2
-Wall
-fno-warn-orphans
-fwarn-incomplete-patterns
-fwarn-unused-imports