pipes-irc-server/pipes-irc-server.cabal

73 lines
3.0 KiB
Plaintext

-- 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
other-modules: Pipes.IRC.Message.Parse
, Pipes.IRC.Message.Render
, Pipes.IRC.Message.Types
, Pipes.IRC.Server.Types
, Pipes.IRC.Server.MessageHandler
-- other-extensions:
build-depends: base >= 4.6 && < 4.7
, mtl >= 2.1 && < 3
, mmorph >= 1 && < 2
, containers >= 0.5 && < 1
, bytestring >= 0.10 && < 0.11
, text >= 0.11.3 && < 0.12
, attoparsec >= 0.10 && < 0.11
, network >= 2.4 && < 2.5
, pipes >= 4 && < 5
, pipes-concurrency >= 2 && < 3
, pipes-bytestring >= 1.0 && < 2
, pipes-parse >= 2.0 && < 3
, pipes-attoparsec >= 0.3 && < 1
, pipes-network >= 0.6 && < 1
, stm >= 2 && < 3
, async >= 2 && < 3
, free >= 3 && < 4
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base >= 4.6 && < 4.7
, mtl >= 2.1 && < 3
, containers >= 0.5 && < 1
, bytestring >= 0.10 && < 0.11
, text >= 0.11.3 && < 0.12
, attoparsec >= 0.10 && < 0.11
, pipes >= 4 && < 5
, pipes-concurrency >= 2 && < 3
, pipes-bytestring >= 1.0 && < 2
, pipes-parse >= 2.0 && < 3
, pipes-attoparsec >= 0.3 && < 1
, pipes-network >= 0.6 && < 1
, stm >= 2 && < 3
, async >= 2 && < 3
, free >= 3 && < 4
build-depends: tasty
, tasty-hspec
, tasty-hunit
, tasty-quickcheck
, tasty-smallcheck
hs-source-dirs: tests, src
default-language: Haskell2010