-
Notifications
You must be signed in to change notification settings - Fork 9
/
functorrent.cabal
89 lines (84 loc) · 2.92 KB
/
functorrent.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
-- Initial functorrent.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: functorrent
version: 0.1.0.0
synopsis: A Bit-torrent client
description: A bittorrent client
license: GPL-3
license-file: LICENSE
author: Ramakrishnan Muthukrishnan
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.18
library
exposed-modules: FuncTorrent
FuncTorrent.Bencode,
FuncTorrent.ControlThread,
FuncTorrent.Logger,
FuncTorrent.Metainfo,
FuncTorrent.Peer,
FuncTorrent.Tracker,
FuncTorrent.Writer
other-modules: FuncTorrent.Utils
other-extensions: OverloadedStrings, CPP
hs-source-dirs: src
ghc-options: -Wall -fwarn-incomplete-patterns -fno-warn-orphans
default-language: Haskell2010
build-depends: base,
base16-bytestring,
binary,
bytestring,
containers,
cryptohash,
directory,
HTTP,
network,
network-uri,
parsec,
QuickCheck,
random,
transformers,
unix
executable functorrent
main-is: Main.hs
other-extensions: OverloadedStrings
hs-source-dirs: src
ghc-options: -Wall -fwarn-incomplete-patterns -optc-Os -fno-warn-orphans
default-language: Haskell2010
build-depends: base,
base16-bytestring,
binary,
bytestring,
containers,
cryptohash,
directory,
HTTP,
QuickCheck,
network,
network-uri,
parsec,
random,
transformers,
unix
test-suite functorrent-test
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Test.hs
other-modules: BencodeTests
build-depends: base,
functorrent,
bytestring,
containers,
directory,
doctest,
QuickCheck,
random,
tasty,
tasty-hunit,
QuickCheck,
tasty-quickcheck,
test-framework-quickcheck2