-
Notifications
You must be signed in to change notification settings - Fork 0
/
fedi-emoji-tool.cabal
78 lines (70 loc) · 2.27 KB
/
fedi-emoji-tool.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
73
74
75
76
77
78
cabal-version: 3.0
name: fedi-emoji-tool
version: 0.1.0.0
synopsis: Misskey/Fediverse emoji tool
-- description:
homepage: https://github.com/eternal-flame-ad/fedi-emoji-tool
license: Apache-2.0
license-file: LICENSE
author: eternal-flame-AD
maintainer: yume@yumechi.jp
-- copyright:
category: Web
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall -Wextra
common base-reqs
default-extensions: OverloadedStrings,
LambdaCase,
ScopedTypeVariables,
TypeApplications
other-extensions: DeriveGeneric
build-depends:
base >=4.12 && <5,
data-default-class ^>=0.1,
bytestring ^>=0.11,
time ^>=1.11
common jsonhttp
build-depends:
http-client ^>=0.7,
http-client-tls ^>=0.3,
http-types ^>=0.12,
http-conduit ^>=2.3,
text ^>=2.1,
aeson ^>=2.2
common concurrent
ghc-options: -threaded
build-depends:
async ^>=2.2
common concurrent-bin
ghc-options: -threaded -with-rtsopts=-N
library
import: warnings, base-reqs, jsonhttp, concurrent
exposed-modules: Web.URL,
Web.Application.Fediverse.Misskey.Emoji,
Web.Application.Fediverse.Misskey.Federation,
Web.Application.Fediverse.Misskey.Drive,
Web.Application.Fediverse.Misskey.Base,
Web.Application.Fediverse.Mastodon.Base,
Web.Application.Fediverse.Mastodon.Emoji
-- other-modules:
-- other-extensions:
hs-source-dirs: src
default-language: Haskell2010
executable fedi-emoji-tool
import: warnings, base-reqs, jsonhttp, concurrent, concurrent-bin
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
fedi-emoji-tool,
optparse-applicative ^>=0.18,
unordered-containers ^>=0.2,
terminal-progress-bar ^>=0.4,
directory ^>=1.3,
filepath ^>=1.5,
random ^>=1.2
hs-source-dirs: app
default-language: Haskell2010