-
Notifications
You must be signed in to change notification settings - Fork 8
/
haze.cabal
104 lines (100 loc) · 4.37 KB
/
haze.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: haze
version: 0.1.1
description: Simple bittorrent client
synopsis: Simple bittorrent client
homepage: https://github.com/cronokirby/haze
bug-reports: https://github.com/cronokirby/haze/issues
license: MIT
license-file: LICENSE
author: Lúcás Meier
maintainer: [email protected]
copyright: 2018 Lúcás Meier
category: Web
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
cabal-version: 1.24
tested-with: GHC == 8.6.5
source-repository head
type: git
location: https://github.com/cronokirby/haze.git
library
hs-source-dirs: src
exposed-modules: Haze
Haze.Announcer
Haze.Bencoding
Haze.Bits
Haze.Client
Haze.Config
Haze.Gateway
Haze.Messaging
Haze.Peer
Haze.PeerInfo
Haze.PieceBuffer
Haze.PieceWriter
Haze.Printer
Haze.Selector
Haze.Tracker
Control.Logger
Data.RateWindow
Data.TieredList
ghc-options: -Wall
build-depends: base-noprelude >= 4.12 && < 5
, ansi-terminal >= 0.9 && < 0.10
, attoparsec >= 0.13 && < 0.14
, array >= 0.5 && < 0.6
, async >= 2.2 && < 2.3
, bytestring >= 0.10 && < 0.11
, containers >= 0.6 && < 0.7
, cryptohash-sha1 >= 0.11 && < 0.12
, hashable >= 1.2 && < 1.3
, http-client >= 0.6 && < 0.7
, http-types >= 0.12 && < 0.13
, MonadRandom >= 0.5 && < 0.6
, network >= 2.8 && < 2.9
, network-simple >= 0.4 && < 0.5
, optparse-applicative >= 0.14 && < 0.15
, path >= 0.6 && < 0.7
, path-io >= 1.4 && < 1.5
, random >= 1.1 && < 1.2
, random-shuffle >= 0.0 && < 0.1
, relude >= 0.5 && < 0.6
, safe-exceptions >= 0.1 && < 0.2
, stm >= 2.5 && < 2.6
, text >= 1.2 && < 1.3
, time >= 1.8 && < 1.9
, unordered-containers >= 0.2 && < 0.3
default-language: Haskell2010
default-extensions: OverloadedStrings
, NoImplicitPrelude
, NumericUnderscores
executable haze
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base-noprelude >= 4.11 && < 5
, haze
, relude >= 0.5 && < 0.6
default-language: Haskell2010
default-extensions: OverloadedStrings
, NoImplicitPrelude
test-suite haze-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base-noprelude >= 4.11 && < 5
, array >= 0.5 && < 0.6
, attoparsec >= 0.13 && < 0.14
, bytestring >= 0.10 && < 0.11
, containers >= 0.6 && < 0.7
, haze
, hedgehog >= 1.0 && < 1.1
, hspec >= 2.7 && < 2.8
, path >= 0.6 && < 0.7
, relude >= 0.5 && < 0.6
, unordered-containers >= 0.2 && < 0.3
default-language: Haskell2010
default-extensions: OverloadedStrings
, NoImplicitPrelude