-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotox.cabal
72 lines (66 loc) · 2.24 KB
/
botox.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: botox
version: 0.0.0.1
synopsis: Tox bot written in haskell.
description: Please see README.md
homepage: http://github.com/gordon-quad/botox
license: AGPL
license-file: LICENSE
author: Gordon Quad
maintainer: [email protected]
copyright: 2017, Gordon Quad
category: Network
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: BoTox
GHC-Options: -Wall
other-modules: BoTox.Types
, BoTox.Commands
, BoTox.Utils
, BoTox.Utils.DiceParser
, BoTox.Bots
, BoTox.Bots.GroupBot
, BoTox.Bots.EchoBot
, BoTox.Bots.RollBot
, BoTox.Bots.TitleBot
build-depends: base >= 4.7 && < 5
, auto >= 0.4 && < 0.6
, toxcore
, bytestring >= 0.10 && < 0.12
, containers >= 0.5 && < 0.6
, lens >= 4.13 && < 4.16
, time >= 1.5 && < 1.7
, http-client >= 0.4 && < 0.6
, base16-bytestring
, transformers
, text
, tagsoup
, unix
, conduit
, conduit-extra
, http-conduit
, mtl
, lens
, MissingH
, random
, parsec
, extra
, monad-loops
, aeson
, yaml
, hslogger
, http-types
, iconv
, regex-compat
default-language: Haskell2010
executable botox
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, botox
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/gordon-quad/botox