2013-11-12 06:56:23 +00:00
|
|
|
-- Initial pipes-irc-server.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: pipes-irc-server
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: IRC server based on pipes
|
|
|
|
-- description:
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Levi Pearson
|
|
|
|
maintainer: levipearson@gmail.com
|
|
|
|
-- copyright:
|
|
|
|
category: Network
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
executable pipes-irc-server
|
|
|
|
main-is: Main.hs
|
2013-11-22 07:57:40 +00:00
|
|
|
other-modules: Pipes.IRC.Message.Parse
|
|
|
|
, Pipes.IRC.Message.Render
|
|
|
|
, Pipes.IRC.Message.Types
|
|
|
|
, Pipes.IRC.Server.Types
|
|
|
|
, Pipes.IRC.Server.MessageHandler
|
2013-11-12 06:56:23 +00:00
|
|
|
-- other-extensions:
|
2014-06-12 09:33:09 +00:00
|
|
|
build-depends: base
|
|
|
|
, mtl
|
|
|
|
, errors
|
|
|
|
, mmorph
|
|
|
|
, containers
|
|
|
|
, bytestring
|
|
|
|
, text
|
|
|
|
, attoparsec
|
|
|
|
, network
|
|
|
|
, pipes
|
|
|
|
, pipes-concurrency
|
|
|
|
, pipes-bytestring
|
|
|
|
, pipes-parse
|
|
|
|
, pipes-attoparsec
|
|
|
|
, pipes-network
|
|
|
|
, stm
|
|
|
|
, time
|
|
|
|
, async
|
|
|
|
, free
|
|
|
|
, lens
|
2013-11-12 06:56:23 +00:00
|
|
|
|
2013-11-22 07:57:40 +00:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite tests
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Main.hs
|
2014-06-12 09:33:09 +00:00
|
|
|
build-depends: base
|
|
|
|
, mtl
|
|
|
|
, containers
|
|
|
|
, bytestring
|
|
|
|
, text
|
|
|
|
, attoparsec
|
|
|
|
, pipes
|
|
|
|
, pipes-concurrency
|
|
|
|
, pipes-bytestring
|
|
|
|
, pipes-parse
|
|
|
|
, pipes-attoparsec
|
|
|
|
, pipes-network
|
|
|
|
, stm
|
|
|
|
, async
|
|
|
|
, free
|
|
|
|
, lens
|
|
|
|
, time
|
2013-11-22 07:57:40 +00:00
|
|
|
build-depends: tasty
|
|
|
|
, tasty-hspec
|
|
|
|
, tasty-hunit
|
|
|
|
, tasty-quickcheck
|
|
|
|
, tasty-smallcheck
|
|
|
|
|
|
|
|
hs-source-dirs: tests, src
|
|
|
|
default-language: Haskell2010
|