-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheliza.cabal
52 lines (50 loc) · 1.18 KB
/
eliza.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
name: eliza
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/iagoleal/eliza#readme
license: GPL-3
license-file: LICENSE
author: Iago Leal de Freitas
maintainer: hello@iagoleal.com
copyright: 2021 Iago Leal de Freitas
category: Bot
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable eliza
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -Wall -Wpartial-fields -Wincomplete-uni-patterns -threaded -rtsopts -with-rtsopts=-N
build-depends: eliza
, base >= 4.7 && < 5
default-extensions: OverloadedStrings
, LambdaCase
default-language: Haskell2010
library
exposed-modules:
Eliza
CLI
other-modules:
Script
Utils
hs-source-dirs:
src
build-depends:
base >= 4.7 && < 5
, random
, process
, transformers
, mtl
, text
, bytestring
, containers
, vector
, megaparsec
, aeson
, aeson-pretty
, ansi-terminal
default-extensions: OverloadedStrings
, LambdaCase
default-language: Haskell2010