forked from scarf-sh/tie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tie.cabal
121 lines (108 loc) · 2.35 KB
/
tie.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
cabal-version: 3.0
name: tie
version: 0.1.0.0
synopsis:
Tie allows generation of Haskell server stubs from
OpenAPI (v 3.x) specifications.
bug-reports: https://github.com/scarf-sh/tie/issues
package-url: https://github.com/scarf-sh/tie
license: Apache-2.0
license-file: LICENSE
author: Alex Biehl (alex@scarf.sh)
maintainer: alex@scarf.sh, engineering@scarf.sh
copyright: (c) 2022 Scarf Systems
category:
extra-source-files: CHANGELOG.md
data-files:
Response.template.hs
Request.template.hs
test/golden/**/*.out
test/golden/**/*.yaml
source-repository head
type: git
location: https://github.com/scarf-sh/tie
library
autogen-modules: Paths_tie
other-modules: Paths_tie
exposed-modules:
Tie
Tie.Codegen.Cabal
Tie.Codegen.Imports
Tie.Codegen.Operation
Tie.Codegen.Request
Tie.Codegen.Response
Tie.Codegen.Schema
Tie.Name
Tie.Operation
Tie.Resolve
Tie.Type
Tie.Writer
build-depends:
, aeson
, base
, bytestring
, containers
, directory
, filepath
, http-media
, insert-ordered-containers
, lens
, mtl
, openapi3
, prettyprinter
, relude
, text
, unordered-containers
, yaml
mixins:
base hiding (Prelude),
relude (Relude as Prelude),
relude
hs-source-dirs: src
default-language: Haskell2010
executable tie
other-modules: Paths_tie
build-depends:
, base
, optparse-applicative
, relude
, tie
mixins:
base hiding (Prelude),
relude (Relude as Prelude),
relude
main-is: Main.hs
hs-source-dirs: bin
default-language: Haskell2010
test-suite tie-tests
type: exitcode-stdio-1.0
main-is: Main.hs
autogen-modules: Paths_tie
other-modules: Paths_tie
other-modules:
Test.Tie.Golden
Test.Tie.Operation
build-depends:
, aeson
, base
, bytestring
, containers
, filepath
, hspec
, insert-ordered-containers
, openapi3
, prettyprinter
, relude
, tasty
, tasty-golden
, tasty-hspec
, tasty-hunit
, text
, tie
, yaml
mixins:
base hiding (Prelude),
relude (Relude as Prelude),
relude
build-tool-depends: tasty-discover:tasty-discover -any
hs-source-dirs: test