~singpolyma/network-protocol-xmpp

ref: fbf0f0b1d51638c3a4ffcb70c97b8e3294af058d network-protocol-xmpp/network-protocol-xmpp.cabal -rw-r--r-- 1.4 KiB
fbf0f0b1 — John Millikin Cleaned up the 'Component' module 13 years ago
                                                                                
7351372c John Millikin
a9f3a874 John Millikin
7351372c John Millikin
4292e71f Stephan Maka
7351372c John Millikin
8b595358 John Millikin
61061478 John Millikin
7351372c John Millikin
78b7d475 John Millikin
61061478 John Millikin
1f0c9c9e John Millikin
1e091bda John Millikin
1f0c9c9e John Millikin
1e091bda John Millikin
82b00c68 John Millikin
fbf0f0b1 John Millikin
61061478 John Millikin
7351372c John Millikin
78b7d475 John Millikin
82b00c68 John Millikin
fbf0f0b1 John Millikin
7351372c John Millikin
fb16bfd5 John Millikin
78b7d475 John Millikin
fb16bfd5 John Millikin
78b7d475 John Millikin
fbf0f0b1 John Millikin
82b00c68 John Millikin
78b7d475 John Millikin
fb16bfd5 John Millikin
78b7d475 John Millikin
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
name: network-protocol-xmpp
version: 0.3
synopsis: Client <-> Server communication over XMPP
license: GPL
license-file: License.txt
author: John Millikin <jmillikin@gmail.com>
        Stephan Maka  <stephan@spaceboyz.net>
maintainer: jmillikin@gmail.com
build-type: Simple
cabal-version: >=1.6
category: Network
stability: experimental
bug-reports: mailto:jmillikin@gmail.com

source-repository head
  type: darcs
  location: http://ianen.org/haskell/xmpp/

library
  ghc-options: -Wall -fno-warn-unused-do-bind

  build-depends:
      base >=3 && < 5
    , text >= 0.7 && < 0.8
    , stringprep >= 0.1.2 && < 0.2
    , ranges >= 0.2.2 && < 0.3
    , hxt >= 8.5 && < 8.6
    , hsgnutls >= 0.2 && < 0.3
    , bytestring >= 0.9 && < 1.0
    , libxml-sax >= 0.3 && < 0.4
    , gsasl >= 0.2 && < 0.3
    , network >= 2.2 && < 2.3
    , SHA >= 1.4 && < 1.5

  exposed-modules:
    Network.Protocol.XMPP
    Network.Protocol.XMPP.Client
    Network.Protocol.XMPP.Component
    Network.Protocol.XMPP.JID
    Network.Protocol.XMPP.Stanza
    Network.Protocol.XMPP.Stream

  other-modules:
    Network.Protocol.XMPP.Internal.Authentication
    Network.Protocol.XMPP.Internal.Connections
    Network.Protocol.XMPP.Internal.Features
    Network.Protocol.XMPP.Internal.Handle
    Network.Protocol.XMPP.Internal.Stanza
    Network.Protocol.XMPP.Internal.Stream
    Network.Protocol.XMPP.Internal.XML