]> git.rkrishnan.org Git - functorrent.git/blob - functorrent.cabal
Tests for decode
[functorrent.git] / functorrent.cabal
1 -- Initial functorrent.cabal generated by cabal init. For further documentation,
2 -- see http://haskell.org/cabal/users-guide/
3
4 name:                functorrent
5 version:             0.1.0.0
6 synopsis:            A Bit-torrent client
7 description:         A bittorrent client
8 license:             GPL-3
9 license-file:        LICENSE
10 author:              Ramakrishnan Muthukrishnan
11 maintainer:          ram@rkrishnan.org
12 -- copyright:
13 category:            Network
14 build-type:          Simple
15 extra-source-files:  README
16 cabal-version:       >=1.18
17
18 library
19   exposed-modules:     FuncTorrent
20                        FuncTorrent.Bencode,
21                        FuncTorrent.Logger,
22                        FuncTorrent.Metainfo,
23                        FuncTorrent.Peer,
24                        FuncTorrent.Tracker
25   other-extensions:    OverloadedStrings
26   hs-source-dirs:      src
27   ghc-options:         -Wall -fwarn-incomplete-patterns
28   default-language:    Haskell2010
29   build-depends:       HTTP,
30                        HUnit,
31                        base,
32                        base16-bytestring,
33                        binary,
34                        bytestring,
35                        containers,
36                        cryptohash,
37                        doctest,
38                        network-uri,
39                        parsec,
40                        tasty,
41                        tasty-hunit
42
43 executable functorrent
44   main-is:             Main.hs
45   other-extensions:    OverloadedStrings
46   hs-source-dirs:      src
47   ghc-options:         -Wall -fwarn-incomplete-patterns
48   default-language:    Haskell2010
49   build-depends:       HTTP,
50                        base,
51                        base16-bytestring,
52                        binary,
53                        bytestring,
54                        containers,
55                        cryptohash,
56                        doctest,
57                        network-uri,
58                        parsec
59
60 test-suite lisper-test
61   type:              exitcode-stdio-1.0
62   default-language:  Haskell2010
63   hs-source-dirs:    test
64   main-is:           Test.hs
65   build-depends:     HUnit,
66                      base,
67                      bytestring,
68                      containers,
69                      functorrent,
70                      tasty,
71                      tasty-hunit