Skip to content

Commit

Permalink
Increased aeson and HUnit upper bounds.
Browse files Browse the repository at this point in the history
  • Loading branch information
grayjay committed Sep 24, 2015
1 parent 2679156 commit a411e48
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions json-rpc-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/

name: json-rpc-server
version: 0.2.1.0
version: 0.2.2.0
license: MIT
license-file: LICENSE
category: Network, JSON
Expand Down Expand Up @@ -37,7 +37,7 @@ library
exposed-modules: Network.JsonRpc.Server
other-modules: Network.JsonRpc.Types
build-depends: base >=4.3 && <4.9,
aeson >=0.6 && <0.10,
aeson >=0.6 && <0.11,
deepseq >= 1.1 && <1.5,
bytestring >=0.9 && <0.11,
mtl >=2.2.1 && <2.3,
Expand Down Expand Up @@ -65,10 +65,10 @@ test-suite tests
type: exitcode-stdio-1.0
build-depends: base >=4.3 && <4.9,
json-rpc-server,
HUnit >=1.2 && <1.3,
HUnit >=1.2 && <1.4,
test-framework >=0.7 && <0.9,
test-framework-hunit >=0.3 && <0.4,
aeson >=0.6 && <0.10,
aeson >=0.6 && <0.11,
bytestring >=0.9 && <0.11,
mtl >=2.2.1 && <2.3,
text >=0.11 && <1.3,
Expand Down
7 changes: 4 additions & 3 deletions src/Network/JsonRpc/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ import Control.Applicative ((<$>))
-- by-name arguments are ignored.

-- $example
-- Here is an example with three JSON-RPC methods. It reads requests
-- from stdin and writes responses to stdout. Compile it with the
-- build flag @demo@.
-- Here is an example with three JSON-RPC methods that all have
-- access to an 'MVar' counter. The program reads requests from
-- stdin and writes responses to stdout. Compile it with the build
-- flag @demo@.
--
-- > <insert Demo.hs>
--
Expand Down

0 comments on commit a411e48

Please sign in to comment.