-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypesafe-precure.cabal
144 lines (116 loc) · 5.6 KB
/
typesafe-precure.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
cabal-version: 2.4
name: typesafe-precure
version: 0.11.1.1
synopsis: Type-safe transformations and purifications of PreCures (Japanese Battle Heroine)
description: See README.md for details.
homepage: https://github.com/igrep/typesafe-precure#readme
license: BSD-3-Clause
license-file: LICENSE
author: YAMAMOTO Yuji
maintainer: [email protected]
copyright: 2022 YAMAMOTO Yuji
category: ACME
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
gen/*.json
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: ACME.PreCure
, ACME.PreCure.Textbook
, ACME.PreCure.Textbook.First
, ACME.PreCure.Textbook.MaxHeart
, ACME.PreCure.Textbook.SplashStar
, ACME.PreCure.Textbook.Yes5
, ACME.PreCure.Textbook.Yes5GoGo
, ACME.PreCure.Textbook.Fresh
, ACME.PreCure.Textbook.HeartCatch
, ACME.PreCure.Textbook.Suite
, ACME.PreCure.Textbook.Smile
, ACME.PreCure.Textbook.DokiDoki
, ACME.PreCure.Textbook.HappinessCharge
, ACME.PreCure.Textbook.GoPrincess
, ACME.PreCure.Textbook.Movie
, ACME.PreCure.Textbook.MahoGirls
, ACME.PreCure.Textbook.KirakiraALaMode
, ACME.PreCure.Textbook.Hugtto
, ACME.PreCure.Textbook.StarTwinkle
, ACME.PreCure.Textbook.HealinGood
, ACME.PreCure.Textbook.TropicalRouge
, ACME.PreCure.Textbook.DeliciousParty
, ACME.PreCure.Textbook.SoaringSky
, ACME.PreCure.Textbook.Wonderful
, ACME.PreCure.Types
, ACME.PreCure.Monad
other-modules: ACME.PreCure.Types.TH
, ACME.PreCure.Index
, ACME.PreCure.Index.Types
, ACME.PreCure.Index.Lib
, ACME.PreCure.Textbook.First.Profiles
, ACME.PreCure.Textbook.First.Words
, ACME.PreCure.Textbook.MaxHeart.Profiles
, ACME.PreCure.Textbook.MaxHeart.Words
, ACME.PreCure.Textbook.SplashStar.Profiles
, ACME.PreCure.Textbook.SplashStar.Words
, ACME.PreCure.Textbook.Yes5.Profiles
, ACME.PreCure.Textbook.Yes5.Words
, ACME.PreCure.Textbook.Yes5GoGo.Profiles
, ACME.PreCure.Textbook.Yes5GoGo.Words
, ACME.PreCure.Textbook.Fresh.Profiles
, ACME.PreCure.Textbook.Fresh.Words
, ACME.PreCure.Textbook.HeartCatch.Profiles
, ACME.PreCure.Textbook.HeartCatch.Words
, ACME.PreCure.Textbook.Suite.Profiles
, ACME.PreCure.Textbook.Suite.Words
, ACME.PreCure.Textbook.Smile.Profiles
, ACME.PreCure.Textbook.Smile.Words
, ACME.PreCure.Textbook.DokiDoki.Profiles
, ACME.PreCure.Textbook.DokiDoki.Types
, ACME.PreCure.Textbook.DokiDoki.Words
, ACME.PreCure.Textbook.HappinessCharge.Profiles
, ACME.PreCure.Textbook.HappinessCharge.Words
, ACME.PreCure.Textbook.GoPrincess.Profiles
, ACME.PreCure.Textbook.GoPrincess.Words
, ACME.PreCure.Textbook.Movie.Profiles
, ACME.PreCure.Textbook.Movie.Words
, ACME.PreCure.Textbook.MahoGirls.Profiles
, ACME.PreCure.Textbook.MahoGirls.Words
, ACME.PreCure.Textbook.KirakiraALaMode.Profiles
, ACME.PreCure.Textbook.Hugtto.Profiles
, ACME.PreCure.Textbook.StarTwinkle.Profiles
, ACME.PreCure.Textbook.HealinGood.Profiles
, ACME.PreCure.Textbook.TropicalRouge.Profiles
, ACME.PreCure.Textbook.TropicalRouge.Types
, ACME.PreCure.Textbook.DeliciousParty.Profiles
, ACME.PreCure.Textbook.SoaringSky.Profiles
, ACME.PreCure.Textbook.Wonderful.Profiles
build-depends: base >= 4.7 && < 5
-- TODO: specify version
, aeson
, aeson-pretty
, autoexporter
, bytestring
, dlist
, template-haskell
, text
, th-data-compat >= 0.1.1.0
, th-strict-compat
, transformers
build-tool-depends: autoexporter:autoexporter
default-language: Haskell2010
test-suite typesafe-precure-test
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
main-is: Spec.hs
other-modules: ACME.PreCureSpec
build-depends: base
, typesafe-precure
, hspec
build-tool-depends: hspec-discover:hspec-discover
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/igrep/typesafe-precure