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

37 lines
1.4 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:
-- other-extensions:
build-depends: base >= 4.6 && < 4.7
, 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
hs-source-dirs: src
default-language: Haskell2010