irc-fun-types-0.1.0.0: irc-fun-types.cabal
name: irc-fun-types
version: 0.1.0.0
synopsis: Common types for IRC related packages
description:
This library provides types useful to programs and libraries working with
Internet Relay Chat (IRC). It allows basic IRC concepts like channel,
nickname, message and so on to be used by IRC parsers and IRC clients and IRC
servers without unnecessary duplication of type definitions.
.
Note that the library possibly doesn't yet fully handle all the types related
to the various IRC messages types, for example user and channel modes. These
are added gradually, and patches are welcome.
.
All the text based types use strict 'Data.Text.Text'. This allows efficient
processing of message text while supporting character-based operations that
require recognizing Unicode.
.
If you are writing a simple IRC client module, you can probably use
"Network.IRC.Fun.Types.Base", which contains the subset you'll likely need.
But if you're writing an IRC message parser or serializer, you'll probably
want to use "Network.IRC.Fun.Types", which contains all the types.
homepage: http://hub.darcs.net/fr33domlover/irc-fun-types
bug-reports: https://notabug.org/fr33domlover/funbot/issues
license: PublicDomain
license-file: COPYING
author: fr33domlover
maintainer: fr33domlover@riseup.net
copyright: ♡ Copying is an act of love. Please copy, reuse and share.
category: Data, Network, IRC
build-type: Simple
extra-source-files: AUTHORS
ChangeLog
COPYING
INSTALL
NEWS.md
README.md
cabal-version: >=1.10
source-repository head
type: darcs
location: http://hub.darcs.net/fr33domlover/irc-fun-types
library
exposed-modules: Network.IRC.Fun.Types
, Network.IRC.Fun.Types.Base
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <5
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall