packages feed

irc-fun-client-0.2.0.0: irc-fun-client.cabal

name:                irc-fun-client
version:             0.2.0.0
synopsis:            Another library for writing IRC clients.
description:
  This is an IRC client library that uses @irc-fun-messages@ library package
  for working with the IRC protocol. It provides functions for sending messages
  and for receiving them, with the IRC protocol messages abstracted by
  convenient command and event datatypes.
homepage:            http://rel4tion.org/projects/irc-fun-client/
bug-reports:         http://rel4tion.org/projects/irc-fun-client/tickets/
license:             PublicDomain
license-file:        COPYING
author:              fr33domlover
maintainer:          fr33domlover@riseup.net
copyright:           ♡ Copying is an act of love. Please copy, reuse and share.
category:            Network, IRC
build-type:          Simple
extra-source-files:  AUTHORS ChangeLog COPYING INSTALL NEWS README.md
cabal-version:       >=1.10

source-repository head
  type:                darcs
  location:            http://dev.rel4tion.org/fr33domlover/irc-fun-client

library
  exposed-modules:     Network.IRC.Fun.Client
                     , Network.IRC.Fun.Client.ChannelLogger
                     , Network.IRC.Fun.Client.Commands
                     , Network.IRC.Fun.Client.Events
                     , Network.IRC.Fun.Client.IO
                     , Network.IRC.Fun.Client.NickTracker
                     , Network.IRC.Fun.Client.Time
                     , Network.IRC.Fun.Client.Util
  -- other-modules:
  -- other-extensions:    
  build-depends:       auto-update
                     , base                 >=4.7 && <5
                     , irc-fun-messages
                     , fast-logger          >=2.4.1
                     , network              >=2.3
                     , time                 >=1.5
                     , time-units           >=1
                     , unordered-containers >=0.2.5
  hs-source-dirs:      src
  default-language:    Haskell2010