1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- -- Initial hask-irc.cabal generated by cabal init. For further
- -- documentation, see http://haskell.org/cabal/users-guide/
-
- -- The name of the package.
- name: hask-irc-core
-
- -- The package version. See the Haskell package versioning policy (PVP)
- -- for standards guiding when and how versions should be incremented.
- -- http://www.haskell.org/haskellwiki/Package_versioning_policy
- -- PVP summary: +-+------- breaking API changes
- -- | | +----- non-breaking API additions
- -- | | | +--- code changes with no API change
- version: 0.1.0
-
- -- A short (one-line) description of the package.
- synopsis: A simple extensible IRC bot
-
- -- A longer description of the package.
- -- description:
-
- -- URL for the project homepage or repository.
- homepage: https://github.com/abhin4v/hask-irc
-
- -- The license under which the package is released.
- license: Apache-2.0
-
- -- The file containing the license text.
- license-file: ../LICENSE
-
- -- The package author(s).
- author: Abhinav Sarkar
-
- -- An email address to which users can send suggestions, bug reports, and
- -- patches.
- maintainer: abhinav@abhinavsarkar.net
-
- -- A copyright notice.
- -- copyright:
-
- category: Network, IRC
-
- build-type: Simple
-
- -- Extra files to be distributed with the package, such as examples or a
- -- README.
- -- extra-source-files:
-
- -- Constraint on the version of Cabal needed to build this package.
- cabal-version: >=1.10
-
- library
- default-extensions: NoImplicitPrelude, OverloadedStrings, RecordWildCards, ScopedTypeVariables,
- BangPatterns, TupleSections, NamedFieldPuns, GeneralizedNewtypeDeriving,
- DeriveDataTypeable, Trustworthy
-
- build-depends: base >=4.5 && <4.8,
- classy-prelude >=0.10 && <1.0,
- convertible >=1.1 && <1.2,
- hslogger >=1.2 && <1.3,
- hslogger-template >=2.0 && <2.1,
- lifted-base >=0.2 && <0.3,
- mtl >=2.1 && <2.3,
- network >=2.5 && <2.6,
- safecopy >=0.8 && <0.9,
- text >=1.1 && <1.2,
- text-format >=0.3 && <0.4,
- time >=1.4 && <1.5,
- transformers-base >=0.4 && <0.5,
- unix >=2.7 && <2.8
-
- exposed-modules: Network.IRC,
- Network.IRC.Types,
- Network.IRC.Client,
- Network.IRC.Configuration,
- Network.IRC.Util
-
- other-modules: Network.IRC.Internal.Types,
- Network.IRC.Message.Types,
- Network.IRC.MessageBus,
- Network.IRC.Protocol,
- Network.IRC.Bot,
- Network.IRC.Handlers.Core
-
- default-language: Haskell2010
-
- ghc-options: -Wall -fno-warn-unused-do-bind -funbox-strict-fields -fno-warn-orphans
|