packages feed

Cabal revisions of json-rpc-server-0.2.6.0

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
--- Initial json-rpc-server.cabal generated by cabal init.  For further --- documentation, see http://haskell.org/cabal/users-guide/--name:                json-rpc-server-version:             0.2.6.0-license:             MIT-license-file:        LICENSE-category:            Network, JSON-maintainer:          Kristen Kozak <grayjay@wordroute.com>-synopsis:            JSON-RPC 2.0 on the server side.-build-type:          Simple-extra-source-files:  changelog.md-cabal-version:       >=1.8-tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,-                     GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1-homepage:            https://github.com/grayjay/json-rpc-server-bug-reports:         https://github.com/grayjay/json-rpc-server/issues-description:         An implementation of the server side of JSON-RPC 2.0.-                     See <http://www.jsonrpc.org/specification>. This-                     library uses 'ByteString' for input and output,-                     leaving the choice of transport up to the user.-                     See the "Network.JsonRpc.Server" module for an example.-                     json-rpc-server can be used with-                     <http://hackage.haskell.org/package/json-rpc-client json-rpc-client>-                     to create a client and server that communicate-                     with the same methods.--source-repository head-  type:              git-  location:          git://github.com/grayjay/json-rpc-server.git--flag demo-  description:       Builds the JSON-RPC demo.-  default:           False-  manual:            True--library-  exposed-modules:     Network.JsonRpc.Server-  other-modules:       Network.JsonRpc.Types-  build-depends:       base >=4.3 && <4.10,-                       aeson >=0.6 && <1.2,-                       deepseq >= 1.1 && <1.5,-                       bytestring >=0.9 && <0.11,-                       mtl >=2.2.1 && <2.3,-                       text >=0.11 && <1.3,-                       vector >=0.7.1 && <0.13,-                       unordered-containers >=0.1 && <0.3-  hs-source-dirs:      src-  ghc-options:         -Wall-  other-extensions:    CPP,-                       FlexibleInstances,-                       FunctionalDependencies,-                       OverloadedStrings,-                       Rank2Types,-                       TypeOperators,-                       TypeSynonymInstances,-                       UndecidableInstances--executable demo-  main-is:             Demo.hs-  hs-source-dirs:      demo-  if flag (demo)-    build-depends:     base,-                       json-rpc-server,-                       bytestring,-                       mtl-    other-extensions:  OverloadedStrings-  else-    buildable:         False--test-suite tests-  hs-source-dirs:      tests-  main-is:             TestSuite.hs-  other-modules:       TestParallelism, Internal-  type:                exitcode-stdio-1.0-  build-depends:       base,-                       json-rpc-server,-                       HUnit >=1.2 && <1.6,-                       test-framework >=0.7 && <0.9,-                       test-framework-hunit >=0.3 && <0.4,-                       aeson,-                       bytestring,-                       mtl,-                       text,-                       vector,-                       unordered-containers-  ghc-options:         -Wall-  other-extensions:    CPP, OverloadedStrings+-- Initial json-rpc-server.cabal generated by cabal init.  For further 
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name:                json-rpc-server
+version:             0.2.6.0
+x-revision: 1
+license:             MIT
+license-file:        LICENSE
+category:            Network, JSON
+maintainer:          Kristen Kozak <grayjay@wordroute.com>
+synopsis:            JSON-RPC 2.0 on the server side.
+build-type:          Simple
+extra-source-files:  changelog.md
+cabal-version:       >=1.8
+tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
+                     GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1
+homepage:            https://github.com/grayjay/json-rpc-server
+bug-reports:         https://github.com/grayjay/json-rpc-server/issues
+description:         An implementation of the server side of JSON-RPC 2.0.
+                     See <http://www.jsonrpc.org/specification>. This
+                     library uses 'ByteString' for input and output,
+                     leaving the choice of transport up to the user.
+                     See the "Network.JsonRpc.Server" module for an example.
+                     json-rpc-server can be used with
+                     <http://hackage.haskell.org/package/json-rpc-client json-rpc-client>
+                     to create a client and server that communicate
+                     with the same methods.
+
+source-repository head
+  type:              git
+  location:          git://github.com/grayjay/json-rpc-server.git
+
+flag demo
+  description:       Builds the JSON-RPC demo.
+  default:           False
+  manual:            True
+
+library
+  exposed-modules:     Network.JsonRpc.Server
+  other-modules:       Network.JsonRpc.Types
+  build-depends:       base >=4.3 && <4.10,
+                       aeson >=0.6 && <1.3,
+                       deepseq >= 1.1 && <1.5,
+                       bytestring >=0.9 && <0.11,
+                       mtl >=2.2.1 && <2.3,
+                       text >=0.11 && <1.3,
+                       vector >=0.7.1 && <0.13,
+                       unordered-containers >=0.1 && <0.3
+  hs-source-dirs:      src
+  ghc-options:         -Wall
+  other-extensions:    CPP,
+                       FlexibleInstances,
+                       FunctionalDependencies,
+                       OverloadedStrings,
+                       Rank2Types,
+                       TypeOperators,
+                       TypeSynonymInstances,
+                       UndecidableInstances
+
+executable demo
+  main-is:             Demo.hs
+  hs-source-dirs:      demo
+  if flag (demo)
+    build-depends:     base,
+                       json-rpc-server,
+                       bytestring,
+                       mtl
+    other-extensions:  OverloadedStrings
+  else
+    buildable:         False
+
+test-suite tests
+  hs-source-dirs:      tests
+  main-is:             TestSuite.hs
+  other-modules:       TestParallelism, Internal
+  type:                exitcode-stdio-1.0
+  build-depends:       base,
+                       json-rpc-server,
+                       HUnit >=1.2 && <1.7,
+                       test-framework >=0.7 && <0.9,
+                       test-framework-hunit >=0.3 && <0.4,
+                       aeson,
+                       bytestring,
+                       mtl,
+                       text,
+                       vector,
+                       unordered-containers
+  ghc-options:         -Wall
+  other-extensions:    CPP, OverloadedStrings
revision 2
 
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision: 1
+x-revision: 2
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
 extra-source-files:  changelog.md
 cabal-version:       >=1.8
 tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
-                     GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1
+                     GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2,
+                     GHC == 8.2.2
 homepage:            https://github.com/grayjay/json-rpc-server
 bug-reports:         https://github.com/grayjay/json-rpc-server/issues
 description:         An implementation of the server side of JSON-RPC 2.0.
 library
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
-  build-depends:       base >=4.3 && <4.10,
+  build-depends:       base >=4.3 && <4.11,
                        aeson >=0.6 && <1.3,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
revision 3
 
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision: 2
+x-revision: 3
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
   build-depends:       base >=4.3 && <4.11,
-                       aeson >=0.6 && <1.3,
+                       aeson >=0.6 && <1.4,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
                        mtl >=2.2.1 && <2.3,
revision 4
 
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision: 3
+x-revision:          4
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
 cabal-version:       >=1.8
 tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
                      GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2,
-                     GHC == 8.2.2
+                     GHC == 8.2.2, GHC == 8.4.1
 homepage:            https://github.com/grayjay/json-rpc-server
 bug-reports:         https://github.com/grayjay/json-rpc-server/issues
 description:         An implementation of the server side of JSON-RPC 2.0.
 library
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
-  build-depends:       base >=4.3 && <4.11,
+  build-depends:       base >=4.3 && <4.12,
                        aeson >=0.6 && <1.4,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
revision 5
--- Initial json-rpc-server.cabal generated by cabal init.  For further 
--- documentation, see http://haskell.org/cabal/users-guide/
-
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision:          4
+x-revision:          5
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
 cabal-version:       >=1.8
 tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
                      GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2,
-                     GHC == 8.2.2, GHC == 8.4.1
+                     GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.3
 homepage:            https://github.com/grayjay/json-rpc-server
 bug-reports:         https://github.com/grayjay/json-rpc-server/issues
 description:         An implementation of the server side of JSON-RPC 2.0.
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
   build-depends:       base >=4.3 && <4.12,
-                       aeson >=0.6 && <1.4,
+                       aeson >=0.6 && <1.5,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
                        mtl >=2.2.1 && <2.3,
revision 6
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision:          5
+x-revision:          6
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
 cabal-version:       >=1.8
 tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
                      GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2,
-                     GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.3
+                     GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.1
 homepage:            https://github.com/grayjay/json-rpc-server
 bug-reports:         https://github.com/grayjay/json-rpc-server/issues
 description:         An implementation of the server side of JSON-RPC 2.0.
 library
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
-  build-depends:       base >=4.3 && <4.12,
+  build-depends:       base >=4.3 && <4.13,
                        aeson >=0.6 && <1.5,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
revision 7
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision:          6
+x-revision:          7
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
 cabal-version:       >=1.8
 tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
                      GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2,
-                     GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.1
+                     GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.1,
+                     GHC == 8.8.1
 homepage:            https://github.com/grayjay/json-rpc-server
 bug-reports:         https://github.com/grayjay/json-rpc-server/issues
 description:         An implementation of the server side of JSON-RPC 2.0.
 library
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
-  build-depends:       base >=4.3 && <4.13,
+  build-depends:       base >=4.3 && <4.14,
                        aeson >=0.6 && <1.5,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
revision 8
 name:                json-rpc-server
 version:             0.2.6.0
-x-revision:          7
+x-revision:          8
 license:             MIT
 license-file:        LICENSE
 category:            Network, JSON
 tested-with:         GHC == 7.0.1, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1,
                      GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2,
                      GHC == 8.2.2, GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.1,
-                     GHC == 8.8.1
+                     GHC == 8.8.1, GHC == 8.8.4, GHC == 8.10.1, GHC == 8.10.2
 homepage:            https://github.com/grayjay/json-rpc-server
 bug-reports:         https://github.com/grayjay/json-rpc-server/issues
 description:         An implementation of the server side of JSON-RPC 2.0.
 library
   exposed-modules:     Network.JsonRpc.Server
   other-modules:       Network.JsonRpc.Types
-  build-depends:       base >=4.3 && <4.14,
-                       aeson >=0.6 && <1.5,
+  build-depends:       base >=4.3 && <4.15,
+                       aeson >=0.6 && <1.6,
                        deepseq >= 1.1 && <1.5,
                        bytestring >=0.9 && <0.11,
                        mtl >=2.2.1 && <2.3,