97 lines
2.3 KiB
Plaintext
97 lines
2.3 KiB
Plaintext
cabal-version: 1.12
|
|
|
|
-- This file has been generated from package.yaml by hpack version 0.31.2.
|
|
--
|
|
-- see: https://github.com/sol/hpack
|
|
--
|
|
-- hash: 73007a389ec8f6641f20fee7630b2329226a4677d5a1c4a2dfe3c7fcb973f5ad
|
|
|
|
name: haskell-basic-irc-bot
|
|
version: 0.1.0.0
|
|
description: Please see the README on GitHub at <https://github.com/githubuser/haskell-basic-irc-bot#readme>
|
|
homepage: https://github.com/githubuser/haskell-basic-irc-bot#readme
|
|
bug-reports: https://github.com/githubuser/haskell-basic-irc-bot/issues
|
|
author: Author name here
|
|
maintainer: example@example.com
|
|
copyright: 2019 Author name here
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
build-type: Simple
|
|
extra-source-files:
|
|
README.md
|
|
ChangeLog.md
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/githubuser/haskell-basic-irc-bot
|
|
|
|
library
|
|
exposed-modules:
|
|
IrcBot.BotNetwork
|
|
, IrcBot.BotNetworkCommands
|
|
, IrcBot.JsonConfigDecoder
|
|
, IrcBot.BotActions
|
|
, IrcBot.MessageParser
|
|
, IrcBot.RemoteUploader
|
|
, IrcBot.IrcBot
|
|
, IrcBot.RandomFileFinder
|
|
, IrcBot.BotCustomCommands
|
|
, IrcBot.Definitions.ServerResponse
|
|
, IrcBot.Definitions.ServerAddress
|
|
, IrcBot.Definitions.Options
|
|
, IrcBot.Config.ConfigHelper
|
|
other-modules:
|
|
Paths_haskell_basic_irc_bot
|
|
hs-source-dirs:
|
|
src
|
|
build-depends:
|
|
base >=4.7 && <5
|
|
, network
|
|
, bytestring
|
|
, text
|
|
, process
|
|
, directory
|
|
, random
|
|
, connection
|
|
, json
|
|
, aeson
|
|
, MissingH
|
|
, split
|
|
, lens
|
|
default-language: Haskell2010
|
|
|
|
executable haskell-basic-irc-bot-exe
|
|
main-is: Main.hs
|
|
other-modules:
|
|
Paths_haskell_basic_irc_bot
|
|
hs-source-dirs:
|
|
app
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >=4.7 && <5
|
|
, haskell-basic-irc-bot
|
|
, network
|
|
, bytestring
|
|
, text
|
|
, process
|
|
, random
|
|
, connection
|
|
, json
|
|
, aeson
|
|
, split
|
|
, lens
|
|
default-language: Haskell2010
|
|
|
|
test-suite haskell-basic-irc-bot-test
|
|
type: exitcode-stdio-1.0
|
|
main-is: Spec.hs
|
|
other-modules:
|
|
Paths_haskell_basic_irc_bot
|
|
hs-source-dirs:
|
|
test
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >=4.7 && <5
|
|
, haskell-basic-irc-bot
|
|
default-language: Haskell2010
|