packages feed

network-protocol-xmpp-0.5.2: network-protocol-xmpp.cabal

name: network-protocol-xmpp
version: 0.5.2
license: GPL-3
license-file: COPYING
author: John Millikin <jmillikin@gmail.com>, Stephan Maka <stephan@spaceboyz.net>
maintainer: Stephen Paul Weber <singpolyma@singpolyma.net>
build-type: Simple
cabal-version: >= 1.10
category: Network
stability: experimental
homepage: https://git.sr.ht/~singpolyma/network-protocol-xmpp
bug-reports: mailto:dev@singpolyma.net

synopsis: Client library for the XMPP protocol.
description:

source-repository head
  type: git
  location: https://git.sr.ht/~singpolyma/network-protocol-xmpp

source-repository this
  type: git
  location: https://git.sr.ht/~singpolyma/network-protocol-xmpp
  tag: 0.5.2

library
  default-language: Haskell2010
  ghc-options: -Wall -Wno-tabs -O2
  hs-source-dirs: lib

  build-depends:
      base >= 4.0 && < 5.0
    , bytestring >= 0.9
    , gnuidn >= 0.2 && < 0.3
    , gnutls >= 0.1.4 && < 0.5
    , gsasl >= 0.3 && < 0.6
    , libxml-sax >= 0.7 && < 0.8
    , network >= 3.0 && < 4.0
    , network-simple >= 0.4 && < 0.5
    , text >= 0.10
    , transformers >= 0.2
    , xml-types >= 0.3 && < 0.4

  exposed-modules:
    Network.Protocol.XMPP
    Network.Protocol.XMPP.Internal

  other-modules:
    Network.Protocol.XMPP.Client
    Network.Protocol.XMPP.Client.Authentication
    Network.Protocol.XMPP.Client.Features
    Network.Protocol.XMPP.Component
    Network.Protocol.XMPP.Connections
    Network.Protocol.XMPP.Handle
    Network.Protocol.XMPP.JID
    Network.Protocol.XMPP.Monad
    Network.Protocol.XMPP.Stanza
    Network.Protocol.XMPP.XML
    Network.Protocol.XMPP.String