name: network-bittorrent version: 0.1.0.0 license: MIT license-file: LICENSE author: Sam T. maintainer: Sam T. copyright: (c) 2013, Sam T. category: Network, Data build-type: Simple cabal-version: >= 1.8 homepage: https://github.com/pxqr/network-bittorrent bug-reports: https://github.com/pxqr/network-bittorrent/issues synopsis: Bittorrent protocol implementation. description: Straightforward and incomplete implementation of bittorrent protocol. source-repository head type: git location: https://github.com/pxqr/network-bittorrent.git library exposed-modules: Data.Torrent , Data.Torrent.InfoHash , Network.BitTorrent , Network.BitTorrent.Peer , Network.BitTorrent.PeerID , Network.BitTorrent.Tracker , Network.BitTorrent.Tracker.Scrape , Network.BitTorrent.PeerWire , Network.BitTorrent.PeerWire.ClientInfo , Network.BitTorrent.PeerWire.Block , Network.BitTorrent.PeerWire.Message , Network.BitTorrent.PeerWire.Handshake other-modules: build-depends: base == 4.* -- Data packages , bytestring >= 0.10.2.0 , containers >= 0.4 , text >= 0.11.0.0 -- encoding/serializations packages , bencoding >= 0.1 , cereal >= 0.3 , urlencoded >= 0.4 -- time packages , time >= 0.1 , old-locale >= 1.0 -- network related packages , network >= 2.4 , HTTP >= 4000.2 , cryptohash , filepath == 1.* extensions: PatternGuards hs-source-dirs: src -- ghc-options: -Wall test-suite info-hash type: exitcode-stdio-1.0 main-is: info-hash.hs hs-source-dirs: tests build-depends: base == 4.* , bytestring >= 0.10.2.0 , containers >= 0.4.2.1 , bencoding >= 0.1.0.0 , network-bittorrent >= 0.1.0.0 , Diff ghc-options: -Wall test-suite encoding type: exitcode-stdio-1.0 main-is: encoding.hs hs-source-dirs: tests build-depends: base == 4.* , bytestring >= 0.10.2 , cereal >= 0.3.5.2 , test-framework , test-framework-quickcheck2 , QuickCheck , network >= 2.4.0.13 , network-bittorrent >= 0.1.0.0 ghc-options: -Wall -fno-warn-orphans benchmark serialization type: exitcode-stdio-1.0 main-is: serialization.hs hs-source-dirs: bench build-depends: base == 4.* , bytestring >= 0.10.2.0 , criterion , cereal , network-bittorrent >= 0.1.0.0 , deepseq ghc-options: -O2 -Wall -fno-warn-orphans