File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 22-- documentation, see http://haskell.org/cabal/users-guide/
33
44name : json-rpc-server
5- version : 0.2.1 .0
5+ version : 0.2.2 .0
66license : MIT
77license-file : LICENSE
88category : Network, JSON
@@ -37,7 +37,7 @@ library
3737 exposed-modules : Network.JsonRpc.Server
3838 other-modules : Network.JsonRpc.Types
3939 build-depends : base >= 4.3 && < 4.9 ,
40- aeson >= 0.6 && < 0.10 ,
40+ aeson >= 0.6 && < 0.11 ,
4141 deepseq >= 1.1 && < 1.5 ,
4242 bytestring >= 0.9 && < 0.11 ,
4343 mtl >= 2.2.1 && < 2.3 ,
@@ -65,10 +65,10 @@ test-suite tests
6565 type : exitcode-stdio-1.0
6666 build-depends : base >= 4.3 && < 4.9 ,
6767 json-rpc-server,
68- HUnit >= 1.2 && < 1.3 ,
68+ HUnit >= 1.2 && < 1.4 ,
6969 test-framework >= 0.7 && < 0.9 ,
7070 test-framework-hunit >= 0.3 && < 0.4 ,
71- aeson >= 0.6 && < 0.10 ,
71+ aeson >= 0.6 && < 0.11 ,
7272 bytestring >= 0.9 && < 0.11 ,
7373 mtl >= 2.2.1 && < 2.3 ,
7474 text >= 0.11 && < 1.3 ,
Original file line number Diff line number Diff line change @@ -67,9 +67,10 @@ import Control.Applicative ((<$>))
6767-- by-name arguments are ignored.
6868
6969-- $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@.
7374--
7475-- > <insert Demo.hs>
7576--
You can’t perform that action at this time.
0 commit comments