blob: f931e6668a346be5f4eda1e4d16113debb5a34a2 (
plain)
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
|
cabal-version: 2.0
name: yahb2
synopsis: Yet another yet another haskell bot
version: 0.1.0.0
license: BSD3
author: Tom Smeding
maintainer: tom@tomsmeding.com
build-type: Simple
executable yahb2
main-is:
Main.hs
other-modules:
ExitEarly
Ghci
IRC
build-depends:
base >= 4.21 && < 4.23,
bytestring >= 0.12 && < 0.13,
http-client >= 0.7.11 && < 0.8,
http-client-tls >= 0.4 && < 0.5,
http-types >= 0.12.3 && < 0.13,
irc-client >= 1.1.2.3 && < 1.2,
microlens >= 0.5 && < 0.6,
process >= 1.6.13.2 && < 1.7,
random >= 1.3 && < 1.4,
stm >= 2.5 && < 2.6,
text >= 2.1 && < 2.2,
transformers >= 0.6 && < 0.7,
utf8-string >= 1.0.2 && < 1.1
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
|