File: socks.cabal

package info (click to toggle)
haskell-socks 0.5.6-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 108 kB
  • sloc: haskell: 619; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,230 bytes parent folder | download
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
Name:                socks
Version:             0.5.6
Synopsis:            Socks proxy (ver 5)
Description:         Socks proxy (version 5) implementation.
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Build-Type:          Simple
Category:            Network
stability:           experimental
Cabal-Version:       >=1.18
Homepage:            http://github.com/vincenthz/hs-socks
extra-doc-files:     README.md, Example.hs

Library
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , cereal >= 0.3.1
                   , network >= 2.4
  Exposed-modules:   Network.Socks5
                     Network.Socks5.Lowlevel
                     Network.Socks5.Types
  Other-modules:     Network.Socks5.Wire
                     Network.Socks5.Conf
                     Network.Socks5.Command
                     Network.Socks5.Parse
  ghc-options:       -Wall -fno-warn-missing-signatures -fwarn-tabs
  default-language:  Haskell2010

source-repository head
  type: git
  location: git://github.com/vincenthz/hs-socks