forked from obadz/hs-stun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstunclient.cabal
More file actions
58 lines (55 loc) · 2.05 KB
/
Copy pathstunclient.cabal
File metadata and controls
58 lines (55 loc) · 2.05 KB
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
name: stunclient
version: 0.1.0.1
synopsis: RFC 5389: Session Traversal Utilities for NAT (STUN) client
description: RFC 5389: Session Traversal Utilities for NAT (STUN) client
license: MIT
license-file: LICENSE
author: Philipp Balzarek
maintainer: p.balzarek@googlemail.com
copyright: Philipp Balzarek
category: Network
build-type: Simple
cabal-version: >=1.8
bug-reports: https://github.com/Philonous/hs-stun/issues
library
exposed-modules: Network.Stun
, Network.Stun.Internal
other-modules: Network.Stun.Base
, Network.Stun.Error
, Network.Stun.MappedAddress
, Network.Stun.Credentials
, Network.Endian
hs-source-dirs: source
build-depends: base >= 4.5 && < 5
, network >= 2.4
, transformers >= 0.3
, cereal >= 0.3
, bytestring >= 0.10
, text >= 0.11
, stringprep >= 0.1
, random >= 1.0
, digest >= 0.0
, unbounded-delays >= 0.1
, cryptohash-cryptoapi >= 0.1
, cryptohash >= 0.9
, crypto-api >= 0.12
ghc-options: -Wall
test-suite test-serialize
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: source
build-depends: base >= 4.5
, network >= 2.4
, transformers >= 0.3
, cereal >= 0.3
, bytestring >= 0.10
, text >= 0.11
, random >= 1.0
, digest >= 0.0
, unbounded-delays >= 0.1
, QuickCheck >= 2.6
, test-framework >= 0.8
, test-framework-quickcheck2 >= 0.3
Source-Repository head
Type: git
Location: git://github.com/Philonous/hs-stun.git