File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 2
2
-- documentation, see http://haskell.org/cabal/users-guide/
3
3
4
4
name : json-rpc-server
5
- version : 0.2.1 .0
5
+ version : 0.2.2 .0
6
6
license : MIT
7
7
license-file : LICENSE
8
8
category : Network, JSON
@@ -37,7 +37,7 @@ library
37
37
exposed-modules : Network.JsonRpc.Server
38
38
other-modules : Network.JsonRpc.Types
39
39
build-depends : base >= 4.3 && < 4.9 ,
40
- aeson >= 0.6 && < 0.10 ,
40
+ aeson >= 0.6 && < 0.11 ,
41
41
deepseq >= 1.1 && < 1.5 ,
42
42
bytestring >= 0.9 && < 0.11 ,
43
43
mtl >= 2.2.1 && < 2.3 ,
@@ -65,10 +65,10 @@ test-suite tests
65
65
type : exitcode-stdio-1.0
66
66
build-depends : base >= 4.3 && < 4.9 ,
67
67
json-rpc-server,
68
- HUnit >= 1.2 && < 1.3 ,
68
+ HUnit >= 1.2 && < 1.4 ,
69
69
test-framework >= 0.7 && < 0.9 ,
70
70
test-framework-hunit >= 0.3 && < 0.4 ,
71
- aeson >= 0.6 && < 0.10 ,
71
+ aeson >= 0.6 && < 0.11 ,
72
72
bytestring >= 0.9 && < 0.11 ,
73
73
mtl >= 2.2.1 && < 2.3 ,
74
74
text >= 0.11 && < 1.3 ,
Original file line number Diff line number Diff line change @@ -67,9 +67,10 @@ import Control.Applicative ((<$>))
67
67
-- by-name arguments are ignored.
68
68
69
69
-- $example
70
- -- Here is an example with three JSON-RPC methods. It reads requests
71
- -- from stdin and writes responses to stdout. Compile it with the
72
- -- build flag @demo@.
70
+ -- Here is an example with three JSON-RPC methods that all have
71
+ -- access to an 'MVar' counter. The program reads requests from
72
+ -- stdin and writes responses to stdout. Compile it with the build
73
+ -- flag @demo@.
73
74
--
74
75
-- > <insert Demo.hs>
75
76
--
You can’t perform that action at this time.
0 commit comments