-
Notifications
You must be signed in to change notification settings - Fork 1
/
HelloBot.cabal
33 lines (31 loc) · 1.05 KB
/
HelloBot.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: HelloBot
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Andreas Ekeroot
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable HelloBot
main-is: Main.hs
other-modules: IrcClient, Parsers, Types
-- other-extensions:
build-depends: base >=4.9 && <4.10,
attoparsec >= 0.13.0.2,
bytestring >= 0.10.6,
containers >= 0.5.6.2,
fast-logger >= 2.4.6,
network >= 2.6.3.1,
optparse-applicative >= 0.12.1.0,
random >= 1.1,
text >= 1.2.2,
text-icu >= 0.7.0.1,
transformers >= 0.5.2.0,
vector >= 0.11.0.0
hs-source-dirs: src
default-language: Haskell2010