packages feed

rtorrent-rpc-0.2.1.0: rtorrent-rpc.cabal

name:                rtorrent-rpc
version:             0.2.1.0
synopsis:            A library for communicating with RTorrent over its XML-RPC interface.
description:         
    A library for communicating with RTorrent over its XML-RPC interface.
license:             MIT
license-file:        LICENSE
author:              Kai Lindholm
maintainer:          megantti@gmail.com
homepage:            https://github.com/megantti/rtorrent-rpc
copyright:           (c) Kai Lindholm, 2014
category:            Network
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Network.RTorrent
                       Network.RTorrent.Action
                       Network.RTorrent.Action.Internals
                       Network.RTorrent.Command
                       Network.RTorrent.Command.Internals
                       Network.RTorrent.CommandList 
                       Network.RTorrent.File
                       Network.RTorrent.Peer 
                       Network.RTorrent.Priority
                       Network.RTorrent.RPC
                       Network.RTorrent.Torrent
                       Network.RTorrent.Tracker

  other-modules:       Network.RTorrent.SCGI
  other-extensions:    TypeFamilies, OverloadedStrings, TypeOperators, ScopedTypeVariables, 
                       GADTs, FlexibleContexts, RankNTypes
  build-depends:       base >=4.7 && <4.8,
                       mtl >=2.1 && <2.3,
                       bytestring >=0.10 && <0.11 ,
                       network >=2.6,
                       haxr >=3000.10.3.1 && <3000.11,
                       blaze-builder >=0.3 && <0.4,
                       blaze-textual >=0.2 && <0.3,
                       attoparsec >=0.12 && <0.13,
                       deepseq >= 1.3.0.0,
                       split >=0.2.0.0,
                       utf8-string >= 0.3 && <0.4
  -- hs-source-dirs:      
  default-language:    Haskell2010
  ghc-options:         -O2