forked from megantti/rtorrent-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtorrent-rpc.cabal
48 lines (46 loc) · 1.93 KB
/
rtorrent-rpc.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: rtorrent-rpc
version: 0.2.2.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: [email protected]
homepage: https://github.com/megantti/rtorrent-rpc
copyright: (c) Kai Lindholm, 2014-2015
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.Chunk
Network.RTorrent.Command
Network.RTorrent.Command.Internals
Network.RTorrent.CommandList
Network.RTorrent.File
Network.RTorrent.Peer
Network.RTorrent.Priority
Network.RTorrent.RPC
Network.RTorrent.SCGI
Network.RTorrent.Torrent
Network.RTorrent.Tracker
other-extensions: TypeFamilies, OverloadedStrings, TypeOperators, ScopedTypeVariables,
GADTs, FlexibleContexts, RankNTypes, DeriveGeneric
build-depends: base >=4.8 && <5.0,
mtl >=2.1 && <2.3,
bytestring >=0.10 && <0.11 ,
network >=2.7,
haxr >=3000.11.3,
blaze-builder,
blaze-textual >=0.2 && <0.3,
attoparsec,
deepseq >= 1.3.0.0,
split >=0.2.0.0,
utf8-string
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -O2