yaml-rpc-1.0: yaml-rpc.cabal
Name: yaml-rpc
Version: 1.0
-- A short (one-line) description of the package.
Synopsis: Simple library for network (HTTP REST-like) YAML RPC
-- A longer description of the package.
Description: This library aimed to organize remote procedure call (RPC)
over HTTP protocol, using YAML as data serialization format.
-- URL for the project homepage or repository.
Homepage: http://redmine.iportnov.ru/projects/yaml-rpc
-- The license under which the package is released.
License: BSD3
-- The file containing the license text.
License-file: LICENSE
-- The package author(s).
Author: Ilya V. Portnov
-- An email address to which users can send suggestions, bug reports,
-- and patches.
Maintainer: portnov84@rambler.ru
-- A copyright notice.
-- Copyright:
Category: Network
Build-type: Simple
-- Extra files to be distributed with the package, such as examples or
-- a README.
Extra-source-files: README.md
-- Constraint on the version of Cabal needed to build this package.
Cabal-version: >= 1.8
Library
-- Modules exported by the library.
Exposed-modules: Network.YAML.API
Network.YAML.Caller,
Network.YAML.TH.Server,
Network.YAML.TH.Client,
Network.YAML.TH.Dispatcher,
Network.YAML
-- Packages needed in order to build this package.
Build-depends: base >= 3 && <= 5,
transformers >= 0.3.0.0,
aeson >= 0.7.0.3,
yaml,
containers,
vector >= 0.10.11.0,
unordered-containers >= 0.2.4.0,
text >= 1.1.1.3,
bytestring >= 0.10.0.2,
template-haskell,
th-lift,
wreq,
http-types >= 0.8.5,
http-client >= 0.3.3.1,
lens >= 4.2
-- Modules not exported by this package.
Other-modules: Test.Client,
Test.TestAPI
-- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
-- Build-tools:
Source-repository head
type: git
location: git@github.com:portnov/yaml-rpc.git